| PUT | /partner/warranty/equipment/customer | Update the customer for provided Sales Force sellout |
|---|
import 'package:servicestack/servicestack.dart';
class UpdateEquipmentWarrantyCustomerResponse implements IConvertible
{
UpdateEquipmentWarrantyCustomerResponse();
UpdateEquipmentWarrantyCustomerResponse.fromJson(Map<String, dynamic> json) : super();
fromMap(Map<String, dynamic> json) {
return this;
}
Map<String, dynamic> toJson() => {};
getTypeName() => "UpdateEquipmentWarrantyCustomerResponse";
TypeContext? context = _ctx;
}
class UpdateEquipmentWarrantyCustomer implements IConvertible
{
/**
* Brand Trigram, e.g. CAR, IWC
*/
// @ApiMember(Description="Brand Trigram, e.g. CAR, IWC")
String? brand;
/**
* POS code, e.g. 102048
*/
// @ApiMember(Description="POS code, e.g. 102048", IsRequired=true)
String? posCode;
/**
* Sales Force sellout ID, e.g a0RbW000000qIyXUAU
*/
// @ApiMember(Description="Sales Force sellout ID, e.g a0RbW000000qIyXUAU", IsRequired=true)
String? sfSelloutId;
/**
* Booster customer ID, e.g 12345678
*/
// @ApiMember(Description="Booster customer ID, e.g 12345678", IsRequired=true)
int? boosterCustomerId;
UpdateEquipmentWarrantyCustomer({this.brand,this.posCode,this.sfSelloutId,this.boosterCustomerId});
UpdateEquipmentWarrantyCustomer.fromJson(Map<String, dynamic> json) { fromMap(json); }
fromMap(Map<String, dynamic> json) {
brand = json['brand'];
posCode = json['posCode'];
sfSelloutId = json['sfSelloutId'];
boosterCustomerId = json['boosterCustomerId'];
return this;
}
Map<String, dynamic> toJson() => {
'brand': brand,
'posCode': posCode,
'sfSelloutId': sfSelloutId,
'boosterCustomerId': boosterCustomerId
};
getTypeName() => "UpdateEquipmentWarrantyCustomer";
TypeContext? context = _ctx;
}
TypeContext _ctx = TypeContext(library: 'dev_api_booster.richemont.com', types: <String, TypeInfo> {
'UpdateEquipmentWarrantyCustomerResponse': TypeInfo(TypeOf.Class, create:() => UpdateEquipmentWarrantyCustomerResponse()),
'UpdateEquipmentWarrantyCustomer': TypeInfo(TypeOf.Class, create:() => UpdateEquipmentWarrantyCustomer()),
});
Dart UpdateEquipmentWarrantyCustomer DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /partner/warranty/equipment/customer HTTP/1.1
Host: dev-api-booster.richemont.com
Accept: application/json
Content-Type: application/json
Content-Length: length
{"brand":"String","posCode":"String","sfSelloutId":"String","boosterCustomerId":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{}