/* Options:
Date: 2026-09-21 22:53:19
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: MissionUpdateDetail.*
//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("/MissionUpdateDetail/{ID}/{QuantityPrepared}")]
public partial class MissionUpdateDetail
{
///
///Label ID
///
[ApiMember(Description="Label ID", IsRequired=true)]
public virtual int ID { get; set; }
///
///Quantity the operator prepared
///
[ApiMember(Description="Quantity the operator prepared", IsRequired=true)]
public virtual double QuantityPrepared { get; set; }
///
///Related batch value
///
[ApiMember(Description="Related batch value")]
public virtual string Batch { get; set; }
///
///Related target container code
///
[ApiMember(Description="Related target container code")]
public virtual string ContainerCode { get; set; }
///
///Data1 will be modified with the given value
///
[ApiMember(Description="Data1 will be modified with the given value")]
public virtual string Data1 { get; set; }
///
///Data2 will be modified with the given value
///
[ApiMember(Description="Data2 will be modified with the given value")]
public virtual string Data2 { get; set; }
///
///Data3 will be modified with the given value
///
[ApiMember(Description="Data3 will be modified with the given value")]
public virtual string Data3 { get; set; }
///
///Data4 will be modified with the given value
///
[ApiMember(Description="Data4 will be modified with the given value")]
public virtual string Data4 { get; set; }
///
///Data5 will be modified with the given value
///
[ApiMember(Description="Data5 will be modified with the given value")]
public virtual string Data5 { get; set; }
///
///Data6 will be modified with the given value
///
[ApiMember(Description="Data6 will be modified with the given value")]
public virtual string Data6 { get; set; }
///
///Data7 will be modified with the given value
///
[ApiMember(Description="Data7 will be modified with the given value")]
public virtual string Data7 { get; set; }
///
///Data8 will be modified with the given value
///
[ApiMember(Description="Data8 will be modified with the given value")]
public virtual string Data8 { get; set; }
///
///Data9 will be modified with the given value
///
[ApiMember(Description="Data9 will be modified with the given value")]
public virtual string Data9 { get; set; }
///
///Data10 will be modified with the given value
///
[ApiMember(Description="Data10 will be modified with the given value")]
public virtual string Data10 { get; set; }
///
///Data11 will be modified with the given value
///
[ApiMember(Description="Data11 will be modified with the given value")]
public virtual string Data11 { get; set; }
///
///Stockroom name
///
[ApiMember(Description="Stockroom name")]
public virtual string StockroomName { get; set; }
///
///Product's version selected
///
[ApiMember(Description="Product's version selected")]
public virtual string VersionSelected { get; set; }
///
///Owner
///
[ApiMember(Description="Owner")]
public virtual string Owner { get; set; }
///
///Allow destock qty in db
///
[ApiMember(Description="Allow destock qty in db")]
public virtual bool UpdateStockQty { get; set; }
}
}