/* Options: Date: 2025-12-19 07:28:16 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dynamics.trendsic.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PolicyDocumentReminderRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/PolicyDocumentReminder/{PolicyDocumentId}", "GET,OPTIONS") // @Route("/v1/PolicyDocumentReminder/", "POST,PUT,OPTIONS") // @Route("/v1/PolicyDocumentReminder/{Id}", "DELETE,OPTIONS") public class PolicyDocumentReminderRequest : IReturn, Codable { public typealias Return = PolicyDocumentReminderResponse public var id:Int? public var policyDocumentId:Int? public var reminder:PolicyDocumentReminder? required public init(){} } public class PolicyDocumentReminderResponse : Codable { public var responseStatus:ResponseStatus? public var policyDocumentReminder:[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(){} }