/* Options: Date: 2026-09-21 22:55:10 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://clouddemo.pickeos.com:1337 //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RamasseMissionsStart.* //ExcludeTypes: //DefaultImports: */ // @Route("/RamasseMissionsStart") export class RamasseMissionsStart { /** @description Mission name list */ // @ApiMember(Description="Mission name list", IsRequired=true) public MissionNames: string[] = []; /** @description User id */ // @ApiMember(Description="User id", IsRequired=true) public UserId: string; /** @description Optional: name of the stockroom where are located the position */ // @ApiMember(Description="Optional: name of the stockroom where are located the position") public StockroomName: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RamasseMissionsStart'; } public getMethod() { return 'POST'; } public createResponse() {} }