POST | /api/BarcodeLabels |
---|
import 'package:servicestack/servicestack.dart';
// @DataContract
class BaseRequest implements IConvertible
{
/**
* This is your AIM API Key provided by Tri-Tech
*/
// @DataMember
// @ApiMember(DataType="string", Description="This is your AIM API Key provided by Tri-Tech", IsRequired=true, Name="ApiKey", ParameterType="header")
String? ApiKey;
// @DataMember
// @ApiMember(DataType="string", Name="OAuthToken", ParameterType="header")
String? OAuthToken;
BaseRequest({this.ApiKey,this.OAuthToken});
BaseRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
ApiKey = json['ApiKey'];
OAuthToken = json['OAuthToken'];
return this;
}
Map<String, dynamic> toJson() => {
'ApiKey': ApiKey,
'OAuthToken': OAuthToken
};
getTypeName() => "BaseRequest";
TypeContext? context = _ctx;
}
// @DataContract
class BaseSecureRequest extends BaseRequest implements IConvertible
{
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="Token", ParameterType="Header")
String? Token;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="DeviceId", ParameterType="Header")
String? DeviceId;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", IsRequired=true, Name="AppId", ParameterType="Header")
String? AppId;
BaseSecureRequest({this.Token,this.DeviceId,this.AppId});
BaseSecureRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
Token = json['Token'];
DeviceId = json['DeviceId'];
AppId = json['AppId'];
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'Token': Token,
'DeviceId': DeviceId,
'AppId': AppId
});
getTypeName() => "BaseSecureRequest";
TypeContext? context = _ctx;
}
// @DataContract
class BaseResponseResult implements IConvertible
{
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="StatusCode", ParameterType="body")
String? StatusCode;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="Login", ParameterType="body")
String? Login;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorCode", ParameterType="body")
String? ErrorCode;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorDisplayText", ParameterType="body")
String? ErrorDisplayText;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", Name="ErrorMessage", ParameterType="body")
String? ErrorMessage;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="DomainName", ParameterType="body")
String? DomainName;
/**
*
*/
// @DataMember
// @ApiMember(DataType="string", Description="", ExcludeInSchema=true, Name="IPAddress", ParameterType="body")
String? IpAddress;
BaseResponseResult({this.StatusCode,this.Login,this.ErrorCode,this.ErrorDisplayText,this.ErrorMessage,this.DomainName,this.IpAddress});
BaseResponseResult.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
StatusCode = json['StatusCode'];
Login = json['Login'];
ErrorCode = json['ErrorCode'];
ErrorDisplayText = json['ErrorDisplayText'];
ErrorMessage = json['ErrorMessage'];
DomainName = json['DomainName'];
IpAddress = json['IpAddress'];
return this;
}
Map<String, dynamic> toJson() => {
'StatusCode': StatusCode,
'Login': Login,
'ErrorCode': ErrorCode,
'ErrorDisplayText': ErrorDisplayText,
'ErrorMessage': ErrorMessage,
'DomainName': DomainName,
'IpAddress': IpAddress
};
getTypeName() => "BaseResponseResult";
TypeContext? context = _ctx;
}
// @DataContract
class BaseResponse implements IConvertible
{
/**
*
*/
// @DataMember
// @ApiMember(DataType="BaseResponseResult", Description="", Name="Status", ParameterType="body")
BaseResponseResult? Status;
BaseResponse({this.Status});
BaseResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Status = JsonConverters.fromJson(json['Status'],'BaseResponseResult',context!);
return this;
}
Map<String, dynamic> toJson() => {
'Status': JsonConverters.toJson(Status,'BaseResponseResult',context!)
};
getTypeName() => "BaseResponse";
TypeContext? context = _ctx;
}
// @DataContract
class ExceptionInfo implements IConvertible
{
// @DataMember
String? Barcode;
// @DataMember
String? Description;
// @DataMember
String? Base64Image;
// @DataMember
int? Category;
// @DataMember
int? SubCategory;
ExceptionInfo({this.Barcode,this.Description,this.Base64Image,this.Category,this.SubCategory});
ExceptionInfo.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
Barcode = json['Barcode'];
Description = json['Description'];
Base64Image = json['Base64Image'];
Category = json['Category'];
SubCategory = json['SubCategory'];
return this;
}
Map<String, dynamic> toJson() => {
'Barcode': Barcode,
'Description': Description,
'Base64Image': Base64Image,
'Category': Category,
'SubCategory': SubCategory
};
getTypeName() => "ExceptionInfo";
TypeContext? context = _ctx;
}
// @DataContract
class ScanErrorItem implements IScanItem, IConvertible
{
// @DataMember
int? SkuPk;
// @DataMember
int? SasPk;
// @DataMember
String? Sku;
// @DataMember
String? Serial;
// @DataMember
double? Quantity;
// @DataMember
ExceptionInfo? ExceptionInfo;
// @DataMember
String? ErrorMessage;
ScanErrorItem({this.SkuPk,this.SasPk,this.Sku,this.Serial,this.Quantity,this.ExceptionInfo,this.ErrorMessage});
ScanErrorItem.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
SkuPk = json['SkuPk'];
SasPk = json['SasPk'];
Sku = json['Sku'];
Serial = json['Serial'];
Quantity = JsonConverters.toDouble(json['Quantity']);
ExceptionInfo = JsonConverters.fromJson(json['ExceptionInfo'],'ExceptionInfo',context!);
ErrorMessage = json['ErrorMessage'];
return this;
}
Map<String, dynamic> toJson() => {
'SkuPk': SkuPk,
'SasPk': SasPk,
'Sku': Sku,
'Serial': Serial,
'Quantity': Quantity,
'ExceptionInfo': JsonConverters.toJson(ExceptionInfo,'ExceptionInfo',context!),
'ErrorMessage': ErrorMessage
};
getTypeName() => "ScanErrorItem";
TypeContext? context = _ctx;
}
// @DataContract
class BarcodeLabelsResponse extends BaseResponse implements IConvertible
{
// @DataMember
List<ScanErrorItem>? ErrorItems;
BarcodeLabelsResponse({this.ErrorItems});
BarcodeLabelsResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
ErrorItems = JsonConverters.fromJson(json['ErrorItems'],'List<ScanErrorItem>',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'ErrorItems': JsonConverters.toJson(ErrorItems,'List<ScanErrorItem>',context!)
});
getTypeName() => "BarcodeLabelsResponse";
TypeContext? context = _ctx;
}
// @DataContract
class ScanItem implements IScanItem, IConvertible
{
// @DataMember
int? SkuPk;
// @DataMember
int? SasPk;
// @DataMember
String? Sku;
// @DataMember
String? Serial;
// @DataMember
double? Quantity;
// @DataMember
ExceptionInfo? ExceptionInfo;
ScanItem({this.SkuPk,this.SasPk,this.Sku,this.Serial,this.Quantity,this.ExceptionInfo});
ScanItem.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
SkuPk = json['SkuPk'];
SasPk = json['SasPk'];
Sku = json['Sku'];
Serial = json['Serial'];
Quantity = JsonConverters.toDouble(json['Quantity']);
ExceptionInfo = JsonConverters.fromJson(json['ExceptionInfo'],'ExceptionInfo',context!);
return this;
}
Map<String, dynamic> toJson() => {
'SkuPk': SkuPk,
'SasPk': SasPk,
'Sku': Sku,
'Serial': Serial,
'Quantity': Quantity,
'ExceptionInfo': JsonConverters.toJson(ExceptionInfo,'ExceptionInfo',context!)
};
getTypeName() => "ScanItem";
TypeContext? context = _ctx;
}
/**
* In development, not yet for public use.
*/
// @DataContract
class BarcodeLabelsRequest extends BaseSecureRequest implements IConvertible
{
/**
* The listening workstation to handle the request.
*/
// @DataMember
// @ApiMember(Description="The listening workstation to handle the request.", Name="OutputWorkstation", ParameterType="query")
int? OutputWorkstation;
// @DataMember
List<ScanItem>? Items;
BarcodeLabelsRequest({this.OutputWorkstation,this.Items});
BarcodeLabelsRequest.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
super.fromMap(json);
OutputWorkstation = json['OutputWorkstation'];
Items = JsonConverters.fromJson(json['Items'],'List<ScanItem>',context!);
return this;
}
Map<String, dynamic> toJson() => super.toJson()..addAll({
'OutputWorkstation': OutputWorkstation,
'Items': JsonConverters.toJson(Items,'List<ScanItem>',context!)
});
getTypeName() => "BarcodeLabelsRequest";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'active_ewebservice.biz', types: <String, TypeInfo> {
'BaseRequest': TypeInfo(TypeOf.Class, create:() => BaseRequest()),
'BaseSecureRequest': TypeInfo(TypeOf.Class, create:() => BaseSecureRequest()),
'BaseResponseResult': TypeInfo(TypeOf.Class, create:() => BaseResponseResult()),
'BaseResponse': TypeInfo(TypeOf.Class, create:() => BaseResponse()),
'ExceptionInfo': TypeInfo(TypeOf.Class, create:() => ExceptionInfo()),
'ScanErrorItem': TypeInfo(TypeOf.Class, create:() => ScanErrorItem()),
'BarcodeLabelsResponse': TypeInfo(TypeOf.Class, create:() => BarcodeLabelsResponse()),
'List<ScanErrorItem>': TypeInfo(TypeOf.Class, create:() => <ScanErrorItem>[]),
'ScanItem': TypeInfo(TypeOf.Class, create:() => ScanItem()),
'BarcodeLabelsRequest': TypeInfo(TypeOf.Class, create:() => BarcodeLabelsRequest()),
'List<ScanItem>': TypeInfo(TypeOf.Class, create:() => <ScanItem>[]),
});
Dart BarcodeLabelsRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /api/BarcodeLabels HTTP/1.1
Host: active-ewebservice.biz
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length
{"OutputWorkstation":0,"Items":[{"SkuPk":0,"SasPk":0,"Sku":"String","Serial":"String","Quantity":0,"ExceptionInfo":{"Barcode":"String","Description":"String","Base64Image":"String","Category":0,"SubCategory":0}}],"Token":"String","DeviceId":"String","AppId":"String","ApiKey":"String","OAuthToken":"String"}
HTTP/1.1 200 OK Content-Type: text/jsonl Content-Length: length {"ErrorItems":[{"SkuPk":0,"SasPk":0,"Sku":"String","Serial":"String","Quantity":0,"ExceptionInfo":{"Barcode":"String","Description":"String","Base64Image":"String","Category":0,"SubCategory":0},"ErrorMessage":"String"}],"Status":{"StatusCode":"String","Login":"String","ErrorCode":"String","ErrorDisplayText":"String","ErrorMessage":"String","DomainName":"String","IpAddress":"String"}}