/* Options: Date: 2025-04-05 02:52:52 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteIncentive.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/superadmin/incentive/{id}", Verbs="DELETE") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class DeleteIncentive : IReturn { /** * The id of the incentive. */ @ApiMember(Description="The id of the incentive.", IsRequired=true, ParameterType="path") var Id:Int? = null companion object { private val responseType = Int::class.java } override fun getResponseType(): Any? = DeleteIncentive.responseType }