/* Options:
Date: 2026-09-21 22:52:13
Version: 8.52
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: http://clouddemo.pickeos.com:1337
//GlobalNamespace:
//MakePartial: True
//MakeVirtual: True
//MakeInternal: False
//MakeDataContractsExtensible: False
//AddNullableAnnotations: False
//AddReturnMarker: True
//AddDescriptionAsComments: True
//AddDataContractAttributes: False
//AddIndexesToDataMembers: False
//AddGeneratedCodeAttributes: False
//AddResponseStatus: False
//AddImplicitVersion:
//InitializeCollections: False
//ExportValueTypes: False
IncludeTypes: MissionCreate.*
//ExcludeTypes:
//AddNamespaces:
//AddDefaultXmlNamespace: http://schemas.servicestack.net/types
*/
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using GoToLightAPI;
namespace GoToLightAPI
{
[Route("/MissionCreate/{Name}")]
public partial class MissionCreate
{
///
///Mission name
///
[ApiMember(Description="Mission name", IsRequired=true)]
public virtual string Name { get; set; }
///
///Mission info
///
[ApiMember(Description="Mission info")]
public virtual string Info { get; set; }
///
///Delete automatically when completed
///
[ApiMember(Description="Delete automatically when completed")]
public virtual bool? DeleteWhenCompleted { get; set; }
///
///Mission owner
///
[ApiMember(Description="Mission owner")]
public virtual string Owner { get; set; }
///
///Mission finder key
///
[ApiMember(Description="Mission finder key")]
public virtual string FinderKey { get; set; }
///
///Defines the mission type. Value can be: E = Entrée/Réapro/Restock, S = Sortie/Picking/Prépa commande or, I = Inventaire/Inventory
///
[ApiMember(Description="Defines the mission type. Value can be: E = Entrée/Réapro/Restock, S = Sortie/Picking/Prépa commande or, I = Inventaire/Inventory")]
public virtual string Type { get; set; }
///
///Mission trolley
///
[ApiMember(Description="Mission trolley")]
public virtual string Trolley { get; set; }
///
///Reference of the target printer
///
[ApiMember(Description="Reference of the target printer")]
public virtual string Printer { get; set; }
///
///Defines if the mission has been cancelled
///
[ApiMember(Description="Defines if the mission has been cancelled")]
public virtual bool? Cancelled { get; set; }
///
///Defines if the mission has been blocked
///
[ApiMember(Description="Defines if the mission has been blocked")]
public virtual bool? Blocked { get; set; }
///
///Carrier
///
[ApiMember(Description="Carrier")]
public virtual string Carrier { get; set; }
///
///BatchId
///
[ApiMember(Description="BatchId")]
public virtual string BatchId { get; set; }
}
}