/* Options: Date: 2026-04-04 01:03:54 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SaveNotificationsOrder.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Updates the order/index of the specified notification */ // @Route("/notification/{NotificationId}/index/{Index}", "PUT") // @Api(Description="Updates the order/index of the specified notification") public class SaveNotificationsOrder : IReturn, Codable { public typealias Return = StringResponse /** * Notification Id of the item being updated. */ // @ApiMember(DataType="Guid", Description="Notification Id of the item being updated.", Name="NotificationId") public var notificationId:String? /** * The new index of the notification. Indexes start at 1. */ // @ApiMember(DataType="int", Description="The new index of the notification. Indexes start at 1.", Name="Index") public var index:Int? required public init(){} } public class StringResponse : Codable { public var result:String? required public init(){} }