/* Options: Date: 2026-08-27 07:11:57 Version: 10.08 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: DeleteSellOut.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; class DeleteSellOutResponse implements IConvertible { DeleteSellOutResponse(); DeleteSellOutResponse.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; getTypeName() => "DeleteSellOutResponse"; TypeContext? context = _ctx; } // @Route("/warranty/{saleDetailId}", "DELETE") class DeleteSellOut implements IReturn, IConvertible, IDelete { /** * Unique Identifier of the Sell-out created in Booster */ // @ApiMember(Description="Unique Identifier of the Sell-out created in Booster", IsRequired=true) int saleDetailId = 0; DeleteSellOut({this.saleDetailId=0}); DeleteSellOut.fromJson(Map json) { fromMap(json); } fromMap(Map json) { saleDetailId = json['saleDetailId'] ?? 0; return this; } Map toJson() => { 'saleDetailId': saleDetailId }; createResponse() => DeleteSellOutResponse(); getResponseTypeName() => "DeleteSellOutResponse"; getTypeName() => "DeleteSellOut"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'dev_api_booster.richemont.com', types: { 'DeleteSellOutResponse': TypeInfo(TypeOf.Class, create:() => DeleteSellOutResponse()), 'DeleteSellOut': TypeInfo(TypeOf.Class, create:() => DeleteSellOut()), });