| POST | /stock/{brand}/transfer | Transfer Stock from one POS to another |
|---|
import 'package:servicestack/servicestack.dart';
class TransferStockResponse implements IConvertible
{
/**
* Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP
*/
// @ApiMember(Description="Status of Stock Transfer: 1 means done, 2 means might take a while because consignment transfers need to be approved by SAP", IsRequired=true)
int stockTransferStatusId = 0;
TransferStockResponse({this.stockTransferStatusId=0});
TransferStockResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
stockTransferStatusId = json['stockTransferStatusId'] ?? 0;
return this;
}
Map<String, dynamic> toJson() => {
'stockTransferStatusId': stockTransferStatusId
};
getTypeName() => "TransferStockResponse";
TypeContext? context = _ctx;
}
class TransferStock implements IConvertible
{
/**
* Brand Trigram
*/
// @ApiMember(Description="Brand Trigram", IsRequired=true)
String brand = "";
/**
* POS of the stock origin
*/
// @ApiMember(Description="POS of the stock origin", IsRequired=true)
String posCodeOrigin = "";
/**
* POS of the stock destination
*/
// @ApiMember(Description="POS of the stock destination", IsRequired=true)
String posCodeDestination = "";
/**
* Article Code of the item to be transferred
*/
// @ApiMember(Description="Article Code of the item to be transferred", IsRequired=true)
String articleCode = "";
/**
* Quantity of the the item to be transferred
*/
// @ApiMember(Description="Quantity of the the item to be transferred", IsRequired=true)
int quantity = 0;
/**
* Serial Numbers of the item to be transferred
*/
// @ApiMember(Description="Serial Numbers of the item to be transferred")
List<String>? serialNumbers;
TransferStock({this.brand="",this.posCodeOrigin="",this.posCodeDestination="",this.articleCode="",this.quantity=0,this.serialNumbers});
TransferStock.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
brand = json['brand'] ?? "";
posCodeOrigin = json['posCodeOrigin'] ?? "";
posCodeDestination = json['posCodeDestination'] ?? "";
articleCode = json['articleCode'] ?? "";
quantity = json['quantity'] ?? 0;
serialNumbers = JsonConverters.fromJson(json['serialNumbers'],'List<String>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'brand': brand,
'posCodeOrigin': posCodeOrigin,
'posCodeDestination': posCodeDestination,
'articleCode': articleCode,
'quantity': quantity,
'serialNumbers': JsonConverters.toJson(serialNumbers,'List<String>',context!)
};
getTypeName() => "TransferStock";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev_api_booster.richemont.com', types: <String, TypeInfo> {
'TransferStockResponse': TypeInfo(TypeOf.Class, create:() => TransferStockResponse()),
'TransferStock': TypeInfo(TypeOf.Class, create:() => TransferStock()),
});
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 /stock/{brand}/transfer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<TransferStock xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel">
<articleCode>String</articleCode>
<brand>String</brand>
<posCodeDestination>String</posCodeDestination>
<posCodeOrigin>String</posCodeOrigin>
<quantity>0</quantity>
<serialNumbers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>String</d2p1:string>
</serialNumbers>
</TransferStock>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <TransferStockResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Richemont.Booster2.PublicApi.Stock.ServiceModel"> <stockTransferStatusId>0</stockTransferStatusId> </TransferStockResponse>