/* Options: Date: 2025-09-13 18:32:47 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteResourceType.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream 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) open var Id:Int? = null }