/* Options: Date: 2025-12-06 05:23:52 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ProcessRemindersRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/ProcessReminders/{PolicyRequiredDocumentId}", "POST,OPTIONS") public class ProcessRemindersRequest : Codable { public var policyRequiredDocumentId:Int? public var reminders:[PolicyDocumentReminder] = [] required public init(){} } public class PolicyDocumentReminder : Codable { public var id:Int? public var policyDocumentId:Int? public var reminderFor:String? public var reminderLeadTime:Int? public var reminderMessage:String? public var adminAgentId:Int? public var needsPrompt:Bool? required public init(){} }