/* Options: Date: 2026-09-21 23:15:56 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: RamasseMissionsStart.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/RamasseMissionsStart") public class RamasseMissionsStart : Codable { /** * Mission name list */ // @ApiMember(Description="Mission name list", IsRequired=true) public var missionNames:[String] = [] /** * User id */ // @ApiMember(Description="User id", IsRequired=true) public var userId:String? /** * Optional: name of the stockroom where are located the position */ // @ApiMember(Description="Optional: name of the stockroom where are located the position") public var stockroomName:String? required public init(){} }