| All Verbs | /UpdatePackingBoxWeight |
|---|
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 TraceabilityMissionDetailPacking() =
member val IDMissionDetail:Int32 = new Int32() with get,set
member val PreparedQuantity:Double = new Double() with get,set
member val Batch:String = null with get,set
member val ContainerID:Int32 = new Int32() with get,set
member val ContainerName:String = null with get,set
member val ContainerSizeXCm:Double = new Double() with get,set
member val ContainerSizeYCm:Double = new Double() with get,set
member val ContainerSizeZCm:Double = new Double() with get,set
member val ContainerWeight:Double = new Double() with get,set
member val StockroomID:Int32 = new Int32() with get,set
member val StockroomName:String = null with get,set
member val Operator:String = null with get,set
member val VersionSelected:String = null with get,set
[<AllowNullLiteral>]
type UpdatePackingBoxWeight() =
///<summary>
/// Traceability Mission Detail
///</summary>
[<ApiMember(Description=" Traceability Mission Detail", IsRequired=true)>]
member val TraceabilityMissionDetailPacking:TraceabilityMissionDetailPacking = null with get,set
F# UpdatePackingBoxWeight DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /UpdatePackingBoxWeight HTTP/1.1
Host: clouddemo.pickeos.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdatePackingBoxWeight xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GoToLightAPI">
<TraceabilityMissionDetailPacking>
<Batch>String</Batch>
<ContainerID>0</ContainerID>
<ContainerName>String</ContainerName>
<ContainerSizeXCm>0</ContainerSizeXCm>
<ContainerSizeYCm>0</ContainerSizeYCm>
<ContainerSizeZCm>0</ContainerSizeZCm>
<ContainerWeight>0</ContainerWeight>
<IDMissionDetail>0</IDMissionDetail>
<Operator>String</Operator>
<PreparedQuantity>0</PreparedQuantity>
<StockroomID>0</StockroomID>
<StockroomName>String</StockroomName>
<VersionSelected>String</VersionSelected>
</TraceabilityMissionDetailPacking>
</UpdatePackingBoxWeight>