/* Options: Date: 2026-06-27 20:24:36 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: RfpMaterialUnitRequest.* //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/Rfp/Material/Unit", Verbs="POST,OPTIONS") public static class RfpMaterialUnitRequest implements IReturn { public Integer MaterialID = null; public String Unit = null; public Integer getMaterialID() { return MaterialID; } public RfpMaterialUnitRequest setMaterialID(Integer value) { this.MaterialID = value; return this; } public String getUnit() { return Unit; } public RfpMaterialUnitRequest setUnit(String value) { this.Unit = value; return this; } private static Object responseType = RfpMaterialUnitResponse.class; public Object getResponseType() { return responseType; } } public static class RfpMaterialUnitResponse { public ResponseStatus ResponseStatus = null; public Boolean Updated = null; public ResponseStatus getResponseStatus() { return ResponseStatus; } public RfpMaterialUnitResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public Boolean isUpdated() { return Updated; } public RfpMaterialUnitResponse setUpdated(Boolean value) { this.Updated = value; return this; } } }