/* Options: Date: 2026-05-19 10:54:37 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://dev-api-booster.richemont.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateEquipmentWarrantyCustomer.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class UpdateEquipmentWarrantyCustomerResponse implements IConvertible { UpdateEquipmentWarrantyCustomerResponse(); UpdateEquipmentWarrantyCustomerResponse.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "UpdateEquipmentWarrantyCustomerResponse"; TypeContext? context = _ctx; } // @Route("/partner/warranty/equipment/customer", "PUT") class UpdateEquipmentWarrantyCustomer implements IReturn, IConvertible, IPut { /** * 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 json) { fromMap(json); } fromMap(Map json) { brand = json['brand']; posCode = json['posCode']; sfSelloutId = json['sfSelloutId']; boosterCustomerId = json['boosterCustomerId']; return this; } Map toJson() => { 'brand': brand, 'posCode': posCode, 'sfSelloutId': sfSelloutId, 'boosterCustomerId': boosterCustomerId }; createResponse() => UpdateEquipmentWarrantyCustomerResponse(); getResponseTypeName() => "UpdateEquipmentWarrantyCustomerResponse"; getTypeName() => "UpdateEquipmentWarrantyCustomer"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dev_api_booster.richemont.com', types: { 'UpdateEquipmentWarrantyCustomerResponse': TypeInfo(TypeOf.Class, create:() => UpdateEquipmentWarrantyCustomerResponse()), 'UpdateEquipmentWarrantyCustomer': TypeInfo(TypeOf.Class, create:() => UpdateEquipmentWarrantyCustomer()), });