/* Options: Date: 2026-01-25 12:19:32 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteAlert.* //ExcludeTypes: //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.*; public class dtos { /** * Delete the specified alert */ @Route(Path="/alerts/{alertId}", Verbs="DELETE") @Api(Description="Delete the specified alert") public static class DeleteAlert implements IReturnVoid, IDelete { /** * The ID of the alert to delete */ @ApiMember(Description="The ID of the alert to delete") public String alertId = null; public String getAlertId() { return alertId; } public DeleteAlert setAlertId(String value) { this.alertId = value; return this; } } }