/* Options: Date: 2025-12-06 07:10:03 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: PolicyDocumentReminderRequest.* //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/PolicyDocumentReminder/{PolicyDocumentId}", Verbs="GET,OPTIONS") // @Route(Path="/v1/PolicyDocumentReminder/", Verbs="POST,PUT,OPTIONS") // @Route(Path="/v1/PolicyDocumentReminder/{Id}", Verbs="DELETE,OPTIONS") public static class PolicyDocumentReminderRequest implements IReturn { public Integer Id = null; public Integer PolicyDocumentId = null; public PolicyDocumentReminder Reminder = null; public Integer getId() { return Id; } public PolicyDocumentReminderRequest setId(Integer value) { this.Id = value; return this; } public Integer getPolicyDocumentId() { return PolicyDocumentId; } public PolicyDocumentReminderRequest setPolicyDocumentId(Integer value) { this.PolicyDocumentId = value; return this; } public PolicyDocumentReminder getReminder() { return Reminder; } public PolicyDocumentReminderRequest setReminder(PolicyDocumentReminder value) { this.Reminder = value; return this; } private static Object responseType = PolicyDocumentReminderResponse.class; public Object getResponseType() { return responseType; } } public static class PolicyDocumentReminderResponse { public ResponseStatus ResponseStatus = null; public ArrayList PolicyDocumentReminder = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public PolicyDocumentReminderResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getPolicyDocumentReminder() { return PolicyDocumentReminder; } public PolicyDocumentReminderResponse setPolicyDocumentReminder(ArrayList value) { this.PolicyDocumentReminder = value; return this; } } public static class PolicyDocumentReminder { public Integer Id = null; public Integer PolicyDocumentId = null; public String ReminderFor = null; public Integer ReminderLeadTime = null; public String ReminderMessage = null; public Integer AdminAgentId = null; public Boolean NeedsPrompt = null; public Integer getId() { return Id; } public PolicyDocumentReminder setId(Integer value) { this.Id = value; return this; } public Integer getPolicyDocumentId() { return PolicyDocumentId; } public PolicyDocumentReminder setPolicyDocumentId(Integer value) { this.PolicyDocumentId = value; return this; } public String getReminderFor() { return ReminderFor; } public PolicyDocumentReminder setReminderFor(String value) { this.ReminderFor = value; return this; } public Integer getReminderLeadTime() { return ReminderLeadTime; } public PolicyDocumentReminder setReminderLeadTime(Integer value) { this.ReminderLeadTime = value; return this; } public String getReminderMessage() { return ReminderMessage; } public PolicyDocumentReminder setReminderMessage(String value) { this.ReminderMessage = value; return this; } public Integer getAdminAgentId() { return AdminAgentId; } public PolicyDocumentReminder setAdminAgentId(Integer value) { this.AdminAgentId = value; return this; } public Boolean isNeedsPrompt() { return NeedsPrompt; } public PolicyDocumentReminder setNeedsPrompt(Boolean value) { this.NeedsPrompt = value; return this; } } }