All Verbs | /customers/{Id} |
---|
import 'package:servicestack/servicestack.dart';
// @DataContract
class Customer implements IConvertible
{
// @DataMember
String? id;
// @DataMember
String? companyName;
// @DataMember
String? contactName;
// @DataMember
String? contactTitle;
// @DataMember
String? address;
// @DataMember
String? city;
// @DataMember
String? region;
// @DataMember
String? postalCode;
// @DataMember
String? country;
// @DataMember
String? phone;
// @DataMember
String? fax;
Customer({this.id,this.companyName,this.contactName,this.contactTitle,this.address,this.city,this.region,this.postalCode,this.country,this.phone,this.fax});
Customer.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
companyName = json['companyName'];
contactName = json['contactName'];
contactTitle = json['contactTitle'];
address = json['address'];
city = json['city'];
region = json['region'];
postalCode = json['postalCode'];
country = json['country'];
phone = json['phone'];
fax = json['fax'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'companyName': companyName,
'contactName': contactName,
'contactTitle': contactTitle,
'address': address,
'city': city,
'region': region,
'postalCode': postalCode,
'country': country,
'phone': phone,
'fax': fax
};
getTypeName() => "Customer";
TypeContext? context = _ctx;
}
// @DataContract
class Order implements IConvertible
{
// @DataMember
int? id;
// @DataMember
String? customerId;
// @DataMember
int? employeeId;
// @DataMember
DateTime? orderDate;
// @DataMember
DateTime? requiredDate;
// @DataMember
DateTime? shippedDate;
// @DataMember
int? shipVia;
// @DataMember
double? freight;
// @DataMember
String? shipName;
// @DataMember
String? shipAddress;
// @DataMember
String? shipCity;
// @DataMember
String? shipRegion;
// @DataMember
String? shipPostalCode;
// @DataMember
String? shipCountry;
Order({this.id,this.customerId,this.employeeId,this.orderDate,this.requiredDate,this.shippedDate,this.shipVia,this.freight,this.shipName,this.shipAddress,this.shipCity,this.shipRegion,this.shipPostalCode,this.shipCountry});
Order.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
customerId = json['customerId'];
employeeId = json['employeeId'];
orderDate = JsonConverters.fromJson(json['orderDate'],'DateTime',context!);
requiredDate = JsonConverters.fromJson(json['requiredDate'],'DateTime',context!);
shippedDate = JsonConverters.fromJson(json['shippedDate'],'DateTime',context!);
shipVia = json['shipVia'];
freight = JsonConverters.toDouble(json['freight']);
shipName = json['shipName'];
shipAddress = json['shipAddress'];
shipCity = json['shipCity'];
shipRegion = json['shipRegion'];
shipPostalCode = json['shipPostalCode'];
shipCountry = json['shipCountry'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id,
'customerId': customerId,
'employeeId': employeeId,
'orderDate': JsonConverters.toJson(orderDate,'DateTime',context!),
'requiredDate': JsonConverters.toJson(requiredDate,'DateTime',context!),
'shippedDate': JsonConverters.toJson(shippedDate,'DateTime',context!),
'shipVia': shipVia,
'freight': freight,
'shipName': shipName,
'shipAddress': shipAddress,
'shipCity': shipCity,
'shipRegion': shipRegion,
'shipPostalCode': shipPostalCode,
'shipCountry': shipCountry
};
getTypeName() => "Order";
TypeContext? context = _ctx;
}
// @DataContract
class OrderDetail implements IConvertible
{
// @DataMember
int? orderId;
// @DataMember
int? productId;
// @DataMember
double? unitPrice;
// @DataMember
int? quantity;
// @DataMember
double? discount;
OrderDetail({this.orderId,this.productId,this.unitPrice,this.quantity,this.discount});
OrderDetail.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
orderId = json['orderId'];
productId = json['productId'];
unitPrice = JsonConverters.toDouble(json['unitPrice']);
quantity = json['quantity'];
discount = JsonConverters.toDouble(json['discount']);
return this;
}
Map<String, dynamic> toJson() => {
'orderId': orderId,
'productId': productId,
'unitPrice': unitPrice,
'quantity': quantity,
'discount': discount
};
getTypeName() => "OrderDetail";
TypeContext? context = _ctx;
}
// @DataContract
class CustomerOrder implements IConvertible
{
// @DataMember
Order? order;
// @DataMember
List<OrderDetail>? orderDetails;
CustomerOrder({this.order,this.orderDetails});
CustomerOrder.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
order = JsonConverters.fromJson(json['order'],'Order',context!);
orderDetails = JsonConverters.fromJson(json['orderDetails'],'List<OrderDetail>',context!);
return this;
}
Map<String, dynamic> toJson() => {
'order': JsonConverters.toJson(order,'Order',context!),
'orderDetails': JsonConverters.toJson(orderDetails,'List<OrderDetail>',context!)
};
getTypeName() => "CustomerOrder";
TypeContext? context = _ctx;
}
// @DataContract
class CustomerDetailsResponse implements IConvertible
{
// @DataMember
Customer? customer;
// @DataMember
List<CustomerOrder>? orders;
// @DataMember
ResponseStatus? responseStatus;
CustomerDetailsResponse({this.customer,this.orders,this.responseStatus});
CustomerDetailsResponse.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
customer = JsonConverters.fromJson(json['customer'],'Customer',context!);
orders = JsonConverters.fromJson(json['orders'],'List<CustomerOrder>',context!);
responseStatus = JsonConverters.fromJson(json['responseStatus'],'ResponseStatus',context!);
return this;
}
Map<String, dynamic> toJson() => {
'customer': JsonConverters.toJson(customer,'Customer',context!),
'orders': JsonConverters.toJson(orders,'List<CustomerOrder>',context!),
'responseStatus': JsonConverters.toJson(responseStatus,'ResponseStatus',context!)
};
getTypeName() => "CustomerDetailsResponse";
TypeContext? context = _ctx;
}
class GetCustomerDetails implements IGet, IConvertible
{
String? id;
GetCustomerDetails({this.id});
GetCustomerDetails.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
id = json['id'];
return this;
}
Map<String, dynamic> toJson() => {
'id': id
};
getTypeName() => "GetCustomerDetails";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'northwind.netcore.io', types: <String, TypeInfo> {
'Customer': TypeInfo(TypeOf.Class, create:() => Customer()),
'Order': TypeInfo(TypeOf.Class, create:() => Order()),
'OrderDetail': TypeInfo(TypeOf.Class, create:() => OrderDetail()),
'CustomerOrder': TypeInfo(TypeOf.Class, create:() => CustomerOrder()),
'List<OrderDetail>': TypeInfo(TypeOf.Class, create:() => <OrderDetail>[]),
'CustomerDetailsResponse': TypeInfo(TypeOf.Class, create:() => CustomerDetailsResponse()),
'List<CustomerOrder>': TypeInfo(TypeOf.Class, create:() => <CustomerOrder>[]),
'GetCustomerDetails': TypeInfo(TypeOf.Class, create:() => GetCustomerDetails()),
});
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 /customers/{Id} HTTP/1.1
Host: northwind.netcore.io
Accept: text/x-vcard
Content-Type: text/x-vcard
Content-Length: length
{"id":"String"}
HTTP/1.1 200 OK Content-Type: text/x-vcard Content-Length: length {"customer":{"id":"String","companyName":"String","contactName":"String","contactTitle":"String","address":"String","city":"String","region":"String","postalCode":"String","country":"String","phone":"String","fax":"String"},"orders":[{"order":{"id":0,"customerId":"String","employeeId":0,"orderDate":"\/Date(-62135596800000-0000)\/","requiredDate":"\/Date(-62135596800000-0000)\/","shippedDate":"\/Date(-62135596800000-0000)\/","shipVia":0,"freight":0,"shipName":"String","shipAddress":"String","shipCity":"String","shipRegion":"String","shipPostalCode":"String","shipCountry":"String"},"orderDetails":[{"orderId":0,"productId":0,"unitPrice":0,"quantity":0,"discount":0}]}],"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}