| All Verbs | /MissionUpdateDetail/{ID}/{QuantityPrepared} |
|---|
import Foundation
import ServiceStack
public class MissionUpdateDetail : Codable
{
/**
* Label ID
*/
// @ApiMember(Description="Label ID", IsRequired=true)
public var id:Int
/**
* Quantity the operator prepared
*/
// @ApiMember(Description="Quantity the operator prepared", IsRequired=true)
public var quantityPrepared:Double
/**
* Related batch value
*/
// @ApiMember(Description="Related batch value")
public var batch:String
/**
* Related target container code
*/
// @ApiMember(Description="Related target container code")
public var containerCode:String
/**
* Data1 will be modified with the given value
*/
// @ApiMember(Description="Data1 will be modified with the given value")
public var data1:String
/**
* Data2 will be modified with the given value
*/
// @ApiMember(Description="Data2 will be modified with the given value")
public var data2:String
/**
* Data3 will be modified with the given value
*/
// @ApiMember(Description="Data3 will be modified with the given value")
public var data3:String
/**
* Data4 will be modified with the given value
*/
// @ApiMember(Description="Data4 will be modified with the given value")
public var data4:String
/**
* Data5 will be modified with the given value
*/
// @ApiMember(Description="Data5 will be modified with the given value")
public var data5:String
/**
* Data6 will be modified with the given value
*/
// @ApiMember(Description="Data6 will be modified with the given value")
public var data6:String
/**
* Data7 will be modified with the given value
*/
// @ApiMember(Description="Data7 will be modified with the given value")
public var data7:String
/**
* Data8 will be modified with the given value
*/
// @ApiMember(Description="Data8 will be modified with the given value")
public var data8:String
/**
* Data9 will be modified with the given value
*/
// @ApiMember(Description="Data9 will be modified with the given value")
public var data9:String
/**
* Data10 will be modified with the given value
*/
// @ApiMember(Description="Data10 will be modified with the given value")
public var data10:String
/**
* Data11 will be modified with the given value
*/
// @ApiMember(Description="Data11 will be modified with the given value")
public var data11:String
/**
* Stockroom name
*/
// @ApiMember(Description="Stockroom name")
public var stockroomName:String
/**
* Product's version selected
*/
// @ApiMember(Description="Product's version selected")
public var versionSelected:String
/**
* Owner
*/
// @ApiMember(Description="Owner")
public var owner:String
/**
* Allow destock qty in db
*/
// @ApiMember(Description="Allow destock qty in db")
public var updateStockQty:Bool
required public init(){}
}
Swift MissionUpdateDetail DTOs
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
}