/* Options: Date: 2025-12-11 14:42:44 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: IsoNeLocationObjectIdFixRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/iso-ne/location-object-id-fix", Verbs="POST") public static class IsoNeLocationObjectIdFixRequest { public Date start = null; public Date end = null; public Date getStart() { return start; } public IsoNeLocationObjectIdFixRequest setStart(Date value) { this.start = value; return this; } public Date getEnd() { return end; } public IsoNeLocationObjectIdFixRequest setEnd(Date value) { this.end = value; return this; } } }