| All Verbs | /SetContainerDimension/ |
|---|
import Foundation
import ServiceStack
public class SetContainerDimension : Codable
{
/**
* Container Code
*/
// @ApiMember(Description="Container Code", IsRequired=true)
public var containerCode:String
/**
* Dimension X
*/
// @ApiMember(Description="Dimension X", IsRequired=true)
public var dimensionX:String
/**
* Dimension Y
*/
// @ApiMember(Description="Dimension Y", IsRequired=true)
public var dimensionY:String
/**
* Dimension Z
*/
// @ApiMember(Description="Dimension Z", IsRequired=true)
public var dimensionZ:String
required public init(){}
}
Swift SetContainerDimension DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /SetContainerDimension/ HTTP/1.1
Host: clouddemo.pickeos.com
Accept: text/csv
Content-Type: text/csv
Content-Length: length
{"ContainerCode":"String","DimensionX":"String","DimensionY":"String","DimensionZ":"String"}