/* Options: Date: 2026-09-06 12:07:18 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: CoverageSelfDayNoteDeleteRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/v1/coverage/self/daynotes/{RosterDayNoteID}", "DELETE,OPTIONS") public class CoverageSelfDayNoteDeleteRequest : IReturn, Codable { public typealias Return = CoverageSelfDayNotesResponse public var rosterDayNoteID:Int? public var date:String? required public init(){} } public class CoverageSelfDayNotesResponse : Codable { public var responseStatus:ResponseStatus? public var todayLabel:String? public var today:[CoverageSelfDayNote] = [] public var previousLabel:String? public var previous:[CoverageSelfDayNote] = [] public var canWrite:Bool? required public init(){} } public class CoverageSelfDayNote : Codable { public var rosterDayNoteID:Int? public var authorName:String? public var body:String? public var timeText:String? public var mine:Bool? required public init(){} }