import 'package:servicestack/servicestack.dart';
// @DataContract
class Key implements IConvertible
{
// @DataMember
String? id;
// @DataMember
String? name;
// @DataMember
String? serialNumber;
// @DataMember
String? keyValid;
// @DataMember
String? keyExpire;
// @DataMember
bool? isAdmin;
// @DataMember
String? companyName;
// @DataMember
String? email;
// @DataMember
String? mobile;
// @DataMember
String? phone;
// @DataMember
String? note;
// @DataMember
DateTime? expirationDate;
// @DataMember
String? employeeNumber;
// @DataMember
List<String>? units;
// @DataMember
List<String>? groups;
Key({this.id,this.name,this.serialNumber,this.keyValid,this.keyExpire,this.isAdmin,this.companyName,this.email,this.mobile,this.phone,this.note,this.expirationDate,this.employeeNumber,this.units,this.groups});
Key.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
name = json['name'];
serialNumber = json['serialNumber'];
keyValid = json['keyValid'];
keyExpire = json['keyExpire'];
isAdmin = json['isAdmin'];
companyName = json['companyName'];
email = json['email'];
mobile = json['mobile'];
phone = json['phone'];
note = json['note'];
expirationDate = JsonConverters.fromJson(json['expirationDate'],'DateTime',context!);
employeeNumber = json['employeeNumber'];
units = JsonConverters.fromJson(json['units'],'List<String>',context!);
groups = JsonConverters.fromJson(json['groups'],'List<String>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'name': name,
'serialNumber': serialNumber,
'keyValid': keyValid,
'keyExpire': keyExpire,
'isAdmin': isAdmin,
'companyName': companyName,
'email': email,
'mobile': mobile,
'phone': phone,
'note': note,
'expirationDate': JsonConverters.toJson(expirationDate,'DateTime',context!),
'employeeNumber': employeeNumber,
'units': JsonConverters.toJson(units,'List<String>',context!),
'groups': JsonConverters.toJson(groups,'List<String>',context!)
};
getTypeName() => "Key";
TypeContext? context = _ctx;
}
// @DataContract
class GetKeyResponse implements IConvertible
{
// @DataMember
List<Key>? list;
// @DataMember
ResponseStatus? responseStatus;
GetKeyResponse({this.list,this.responseStatus});
GetKeyResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
list = JsonConverters.fromJson(json['list'],'List<Key>',context!);
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'list': JsonConverters.toJson(list,'List<Key>',context!),
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
};
getTypeName() => "GetKeyResponse";
TypeContext? context = _ctx;
}
// @DataContract
class GetKey implements IConvertible
{
// @DataMember
String? id;
GetKey({this.id});
GetKey.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id
};
getTypeName() => "GetKey";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'api.trackunit.com', types: <String, TypeInfo> {
'Key': TypeInfo(TypeOf.Class, create:() => Key()),
'GetKeyResponse': TypeInfo(TypeOf.Class, create:() => GetKeyResponse()),
'List<Key>': TypeInfo(TypeOf.Class, create:() => <Key>[]),
'GetKey': TypeInfo(TypeOf.Class, create:() => GetKey()),
});
To override the Content-type in your clients, use the HTTP Accept Header, append the .soap11 suffix or ?format=soap11
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /soap11 HTTP/1.1
Host: api.trackunit.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: GetKey
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetKey xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types">
<Id>String</Id>
</GetKey>
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetKeyResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <List> <Key> <CompanyName>String</CompanyName> <Email>String</Email> <EmployeeNumber>String</EmployeeNumber> <ExpirationDate>0001-01-01T00:00:00</ExpirationDate> <Groups xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </Groups> <Id>String</Id> <IsAdmin>false</IsAdmin> <KeyExpire>String</KeyExpire> <KeyValid>String</KeyValid> <Mobile>String</Mobile> <Name>String</Name> <Note>String</Note> <Phone>String</Phone> <SerialNumber>String</SerialNumber> <Units xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </Units> </Key> </List> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </Meta> </ResponseStatus> </GetKeyResponse> </soap:Body> </soap:Envelope>