/* Options: Date: 2026-09-21 22:55:19 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: UnregisterCallback.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/UnregisterCallback/{Name}") public class UnregisterCallback : Codable { /** * Callback on which to get registered (e.g. SetPosition) */ // @ApiMember(Description="Callback on which to get registered (e.g. SetPosition)", IsRequired=true) public var name:String? /** * Callback URL */ // @ApiMember(Description="Callback URL") public var callbackURL:String? required public init(){} }