/* Options: Date: 2026-08-01 03:06:49 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: SendTrackLinkRequest.* //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/fleet/send-track", Verbs="POST,OPTIONS") public static class SendTrackLinkRequest implements IReturn { public Integer JobID = null; public String ScheduledDate = null; public String Email = null; public String Phone = null; public Integer getJobID() { return JobID; } public SendTrackLinkRequest setJobID(Integer value) { this.JobID = value; return this; } public String getScheduledDate() { return ScheduledDate; } public SendTrackLinkRequest setScheduledDate(String value) { this.ScheduledDate = value; return this; } public String getEmail() { return Email; } public SendTrackLinkRequest setEmail(String value) { this.Email = value; return this; } public String getPhone() { return Phone; } public SendTrackLinkRequest setPhone(String value) { this.Phone = value; return this; } private static Object responseType = SendTrackLinkResponse.class; public Object getResponseType() { return responseType; } } public static class SendTrackLinkResponse { public ResponseStatus ResponseStatus = null; public String TrackUrl = null; public ArrayList Sent = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public SendTrackLinkResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public String getTrackUrl() { return TrackUrl; } public SendTrackLinkResponse setTrackUrl(String value) { this.TrackUrl = value; return this; } public ArrayList getSent() { return Sent; } public SendTrackLinkResponse setSent(ArrayList value) { this.Sent = value; return this; } } }