(* Options: Date: 2025-04-08 22:18:02 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: DeleteIncentive.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.IO open System.Net open System.Net.Http.Headers [<Route("/superadmin/incentive/{id}", "DELETE")>] [<ValidateRequest(Validator="IsAuthenticated")>] [<ApiResponse(Description="You were unauthorized to call this service", StatusCode=401)>] [<AllowNullLiteral>] type DeleteIncentive() = interface IReturn<Int32> ///<summary> ///The id of the incentive. ///</summary> [<ApiMember(Description="The id of the incentive.", IsRequired=true, ParameterType="path")>] member val Id:Int32 = new Int32() with get,set