| All Verbs | /MissionUpdateDetail/{ID}/{QuantityPrepared} |
|---|
namespace GoToLightAPI
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
[<AllowNullLiteral>]
type MissionUpdateDetail() =
///<summary>
///Label ID
///</summary>
[<ApiMember(Description="Label ID", IsRequired=true)>]
member val ID:Int32 = new Int32() with get,set
///<summary>
///Quantity the operator prepared
///</summary>
[<ApiMember(Description="Quantity the operator prepared", IsRequired=true)>]
member val QuantityPrepared:Double = new Double() with get,set
///<summary>
///Related batch value
///</summary>
[<ApiMember(Description="Related batch value")>]
member val Batch:String = null with get,set
///<summary>
///Related target container code
///</summary>
[<ApiMember(Description="Related target container code")>]
member val ContainerCode:String = null with get,set
///<summary>
///Data1 will be modified with the given value
///</summary>
[<ApiMember(Description="Data1 will be modified with the given value")>]
member val Data1:String = null with get,set
///<summary>
///Data2 will be modified with the given value
///</summary>
[<ApiMember(Description="Data2 will be modified with the given value")>]
member val Data2:String = null with get,set
///<summary>
///Data3 will be modified with the given value
///</summary>
[<ApiMember(Description="Data3 will be modified with the given value")>]
member val Data3:String = null with get,set
///<summary>
///Data4 will be modified with the given value
///</summary>
[<ApiMember(Description="Data4 will be modified with the given value")>]
member val Data4:String = null with get,set
///<summary>
///Data5 will be modified with the given value
///</summary>
[<ApiMember(Description="Data5 will be modified with the given value")>]
member val Data5:String = null with get,set
///<summary>
///Data6 will be modified with the given value
///</summary>
[<ApiMember(Description="Data6 will be modified with the given value")>]
member val Data6:String = null with get,set
///<summary>
///Data7 will be modified with the given value
///</summary>
[<ApiMember(Description="Data7 will be modified with the given value")>]
member val Data7:String = null with get,set
///<summary>
///Data8 will be modified with the given value
///</summary>
[<ApiMember(Description="Data8 will be modified with the given value")>]
member val Data8:String = null with get,set
///<summary>
///Data9 will be modified with the given value
///</summary>
[<ApiMember(Description="Data9 will be modified with the given value")>]
member val Data9:String = null with get,set
///<summary>
///Data10 will be modified with the given value
///</summary>
[<ApiMember(Description="Data10 will be modified with the given value")>]
member val Data10:String = null with get,set
///<summary>
///Data11 will be modified with the given value
///</summary>
[<ApiMember(Description="Data11 will be modified with the given value")>]
member val Data11:String = null with get,set
///<summary>
///Stockroom name
///</summary>
[<ApiMember(Description="Stockroom name")>]
member val StockroomName:String = null with get,set
///<summary>
///Product's version selected
///</summary>
[<ApiMember(Description="Product's version selected")>]
member val VersionSelected:String = null with get,set
///<summary>
///Owner
///</summary>
[<ApiMember(Description="Owner")>]
member val Owner:String = null with get,set
///<summary>
///Allow destock qty in db
///</summary>
[<ApiMember(Description="Allow destock qty in db")>]
member val UpdateStockQty:Boolean = new Boolean() with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /MissionUpdateDetail/{ID}/{QuantityPrepared} HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
ID: 0,
QuantityPrepared: 0,
Batch: String,
ContainerCode: String,
Data1: String,
Data2: String,
Data3: String,
Data4: String,
Data5: String,
Data6: String,
Data7: String,
Data8: String,
Data9: String,
Data10: String,
Data11: String,
StockroomName: String,
VersionSelected: String,
Owner: String,
UpdateStockQty: False
}