/* Options: Date: 2025-04-05 11:33:11 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteIncentive.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/superadmin/incentive/{id}", "DELETE") // @ValidateRequest(Validator="IsAuthenticated") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) class DeleteIncentive implements IReturn, IConvertible, IDelete { /** * The id of the incentive. */ // @ApiMember(Description="The id of the incentive.", IsRequired=true, ParameterType="path") int? Id; DeleteIncentive({this.Id}); DeleteIncentive.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Id = json['Id']; return this; } Map toJson() => { 'Id': Id }; createResponse() => 0; getResponseTypeName() => "int"; getTypeName() => "DeleteIncentive"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'testapi.bokamera.se', types: { 'DeleteIncentive': TypeInfo(TypeOf.Class, create:() => DeleteIncentive()), });