/* Options: Date: 2025-12-06 09:01:45 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: NotificationsRequest.* //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/Notifications", Verbs="GET,OPTIONS") public static class NotificationsRequest implements IReturn { private static Object responseType = NotificationsResponse.class; public Object getResponseType() { return responseType; } } public static class NotificationsResponse { public ResponseStatus ResponseStatus = null; public ArrayList Notifications = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public NotificationsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getNotifications() { return Notifications; } public NotificationsResponse setNotifications(ArrayList value) { this.Notifications = value; return this; } } public static class NotificationHeader { public Integer NotificationHeaderId = null; public String Subject = null; public String Status = null; public Boolean NeedsCloseApproval = null; public Boolean IsDeleted = null; public Integer CreatedBy = null; public Date DateCreated = null; public Integer getNotificationHeaderId() { return NotificationHeaderId; } public NotificationHeader setNotificationHeaderId(Integer value) { this.NotificationHeaderId = value; return this; } public String getSubject() { return Subject; } public NotificationHeader setSubject(String value) { this.Subject = value; return this; } public String getStatus() { return Status; } public NotificationHeader setStatus(String value) { this.Status = value; return this; } public Boolean isNeedsCloseApproval() { return NeedsCloseApproval; } public NotificationHeader setNeedsCloseApproval(Boolean value) { this.NeedsCloseApproval = value; return this; } public Boolean getIsDeleted() { return IsDeleted; } public NotificationHeader setIsDeleted(Boolean value) { this.IsDeleted = value; return this; } public Integer getCreatedBy() { return CreatedBy; } public NotificationHeader setCreatedBy(Integer value) { this.CreatedBy = value; return this; } public Date getDateCreated() { return DateCreated; } public NotificationHeader setDateCreated(Date value) { this.DateCreated = value; return this; } } public static class Notification extends NotificationHeader { } }