/* Options: Date: 2025-12-06 06:27:14 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: IncomingNotifications.* //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/IncomingNotifications", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/IncomingNotifications/{Id}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class IncomingNotifications extends IncomingNotificationObject implements IReturn { public UUID ApiKey = null; public UUID getApiKey() { return ApiKey; } public IncomingNotifications setApiKey(UUID value) { this.ApiKey = value; return this; } private static Object responseType = IncomingNotificationsResponse.class; public Object getResponseType() { return responseType; } } public static class IncomingNotificationsResponse { public ResponseStatus ResponseStatus = null; public ArrayList IncomingNotifications = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public IncomingNotificationsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getIncomingNotifications() { return IncomingNotifications; } public IncomingNotificationsResponse setIncomingNotifications(ArrayList value) { this.IncomingNotifications = value; return this; } } public static class IncomingNotificationObject { public UUID Id = null; public UUID CustomerId = null; public String Message = null; public UUID NotificationMethod = null; public Date DateReceived = null; public UUID getId() { return Id; } public IncomingNotificationObject setId(UUID value) { this.Id = value; return this; } public UUID getCustomerId() { return CustomerId; } public IncomingNotificationObject setCustomerId(UUID value) { this.CustomerId = value; return this; } public String getMessage() { return Message; } public IncomingNotificationObject setMessage(String value) { this.Message = value; return this; } public UUID getNotificationMethod() { return NotificationMethod; } public IncomingNotificationObject setNotificationMethod(UUID value) { this.NotificationMethod = value; return this; } public Date getDateReceived() { return DateReceived; } public IncomingNotificationObject setDateReceived(Date value) { this.DateReceived = value; return this; } } }