/* Options: Date: 2025-12-06 08:12:37 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: OutgoingNotifications.* //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/OutgoingNotifications", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/OutgoingNotifications/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class OutgoingNotifications extends OutgoingNotificationObject implements IReturn { public UUID ApiKey = null; public UUID getApiKey() { return ApiKey; } public OutgoingNotifications setApiKey(UUID value) { this.ApiKey = value; return this; } private static Object responseType = OutgoingNotificationsResponse.class; public Object getResponseType() { return responseType; } } public static class OutgoingNotificationsResponse { public ResponseStatus ResponseStatus = null; public ArrayList OutgoingNotifications = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public OutgoingNotificationsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getOutgoingNotifications() { return OutgoingNotifications; } public OutgoingNotificationsResponse setOutgoingNotifications(ArrayList value) { this.OutgoingNotifications = value; return this; } } public static class OutgoingNotificationObject { public UUID Id = null; public UUID CustomerId = null; public String Message = null; public UUID NotificationMethod = null; public Date DateSent = null; public UUID getId() { return Id; } public OutgoingNotificationObject setId(UUID value) { this.Id = value; return this; } public UUID getCustomerId() { return CustomerId; } public OutgoingNotificationObject setCustomerId(UUID value) { this.CustomerId = value; return this; } public String getMessage() { return Message; } public OutgoingNotificationObject setMessage(String value) { this.Message = value; return this; } public UUID getNotificationMethod() { return NotificationMethod; } public OutgoingNotificationObject setNotificationMethod(UUID value) { this.NotificationMethod = value; return this; } public Date getDateSent() { return DateSent; } public OutgoingNotificationObject setDateSent(Date value) { this.DateSent = value; return this; } } }