/* Options: Date: 2024-07-03 14:25:28 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteResourceType.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/resourcetypes/{Id}", Verbs="DELETE") @ValidateRequest(Validator="IsAuthenticated") open class DeleteResourceType { /** * Id of the resource to delete */ @ApiMember(Description="Id of the resource to delete", IsRequired=true) var Id:Int? = null }