/* Options: Date: 2025-04-05 02:05:58 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteIncentive.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/superadmin/incentive/{id}", Verbs="DELETE") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public static class DeleteIncentive implements IReturn { /** * The id of the incentive. */ @ApiMember(Description="The id of the incentive.", IsRequired=true, ParameterType="path") public Integer Id = null; public Integer getId() { return Id; } public DeleteIncentive setId(Integer value) { this.Id = value; return this; } private static Object responseType = Integer.class; public Object getResponseType() { return responseType; } } }