/* Options: Date: 2025-05-06 13:31:40 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: TimeZonesConvertRequest.* //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="/TimeZones/Convert", Verbs="POST") public static class TimeZonesConvertRequest implements IReturn { public String timeZoneFromName = null; public Date fromDate = null; public String timeZoneToName = null; public String getTimeZoneFromName() { return timeZoneFromName; } public TimeZonesConvertRequest setTimeZoneFromName(String value) { this.timeZoneFromName = value; return this; } public Date getFromDate() { return fromDate; } public TimeZonesConvertRequest setFromDate(Date value) { this.fromDate = value; return this; } public String getTimeZoneToName() { return timeZoneToName; } public TimeZonesConvertRequest setTimeZoneToName(String value) { this.timeZoneToName = value; return this; } private static Object responseType = TimeZoneConvertResponse.class; public Object getResponseType() { return responseType; } } public static class TimeZoneConvertResponse { public Integer statusCode = null; public String message = null; public TimeZoneInfo fromTimeZoneInfo = null; public TimeZoneInfo toTimeZoneInfo = null; public Date fromDate = null; public Date toDate = null; public Date utcDate = null; public Integer getStatusCode() { return statusCode; } public TimeZoneConvertResponse setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public TimeZoneConvertResponse setMessage(String value) { this.message = value; return this; } public TimeZoneInfo getFromTimeZoneInfo() { return fromTimeZoneInfo; } public TimeZoneConvertResponse setFromTimeZoneInfo(TimeZoneInfo value) { this.fromTimeZoneInfo = value; return this; } public TimeZoneInfo getToTimeZoneInfo() { return toTimeZoneInfo; } public TimeZoneConvertResponse setToTimeZoneInfo(TimeZoneInfo value) { this.toTimeZoneInfo = value; return this; } public Date getFromDate() { return fromDate; } public TimeZoneConvertResponse setFromDate(Date value) { this.fromDate = value; return this; } public Date getToDate() { return toDate; } public TimeZoneConvertResponse setToDate(Date value) { this.toDate = value; return this; } public Date getUtcDate() { return utcDate; } public TimeZoneConvertResponse setUtcDate(Date value) { this.utcDate = value; return this; } } }