/* Options: Date: 2026-09-21 23:10:52 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: RebootLC.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/RebootLC") public class RebootLC : Codable { /** * Optional: LC address */ // @ApiMember(Description="Optional: LC address") public var lcAddress:String? /** * Optional: name of the stockroom where the LC is located */ // @ApiMember(Description="Optional: name of the stockroom where the LC is located") public var stockroomName:String? /** * Optional: IP address of the bus controller where to send the reboot */ // @ApiMember(Description="Optional: IP address of the bus controller where to send the reboot") public var bcipAddress:String? required public init(){} }