/* Options: Date: 2026-08-11 00:53:59 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ApplicationPrefillRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/field/application/prefill", Verbs="GET,OPTIONS") public static class ApplicationPrefillRequest implements IReturn { public Integer AgreementJobID = null; public Integer JobID = null; public Integer ProjectID = null; public Integer getAgreementJobID() { return AgreementJobID; } public ApplicationPrefillRequest setAgreementJobID(Integer value) { this.AgreementJobID = value; return this; } public Integer getJobID() { return JobID; } public ApplicationPrefillRequest setJobID(Integer value) { this.JobID = value; return this; } public Integer getProjectID() { return ProjectID; } public ApplicationPrefillRequest setProjectID(Integer value) { this.ProjectID = value; return this; } private static Object responseType = ApplicationPrefillResponse.class; public Object getResponseType() { return responseType; } } public static class ApplicationPrefillResponse { public ArrayList Products = new ArrayList(); public Integer ApplicatorContactID = null; public String ApplicatorName = null; public String ApplicatorLicence = null; public ResponseStatus ResponseStatus = null; public ArrayList getProducts() { return Products; } public ApplicationPrefillResponse setProducts(ArrayList value) { this.Products = value; return this; } public Integer getApplicatorContactID() { return ApplicatorContactID; } public ApplicationPrefillResponse setApplicatorContactID(Integer value) { this.ApplicatorContactID = value; return this; } public String getApplicatorName() { return ApplicatorName; } public ApplicationPrefillResponse setApplicatorName(String value) { this.ApplicatorName = value; return this; } public String getApplicatorLicence() { return ApplicatorLicence; } public ApplicationPrefillResponse setApplicatorLicence(String value) { this.ApplicatorLicence = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ApplicationPrefillResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class ApplicationProduct { public Integer MaterialID = null; public String ProductName = null; public String EpaRegistrationNumber = null; public Boolean IsRestrictedUse = null; public String SignalWord = null; public Integer ReEntryIntervalHours = null; public BigDecimal DefaultRate = null; public String RateUnit = null; public Integer getMaterialID() { return MaterialID; } public ApplicationProduct setMaterialID(Integer value) { this.MaterialID = value; return this; } public String getProductName() { return ProductName; } public ApplicationProduct setProductName(String value) { this.ProductName = value; return this; } public String getEpaRegistrationNumber() { return EpaRegistrationNumber; } public ApplicationProduct setEpaRegistrationNumber(String value) { this.EpaRegistrationNumber = value; return this; } public Boolean getIsRestrictedUse() { return IsRestrictedUse; } public ApplicationProduct setIsRestrictedUse(Boolean value) { this.IsRestrictedUse = value; return this; } public String getSignalWord() { return SignalWord; } public ApplicationProduct setSignalWord(String value) { this.SignalWord = value; return this; } public Integer getReEntryIntervalHours() { return ReEntryIntervalHours; } public ApplicationProduct setReEntryIntervalHours(Integer value) { this.ReEntryIntervalHours = value; return this; } public BigDecimal getDefaultRate() { return DefaultRate; } public ApplicationProduct setDefaultRate(BigDecimal value) { this.DefaultRate = value; return this; } public String getRateUnit() { return RateUnit; } public ApplicationProduct setRateUnit(String value) { this.RateUnit = value; return this; } } }