/* Options: Date: 2025-05-04 23:26:31 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteAccount.* //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.* /** * Deletes the specified account and everything in it. Can only be performed by a System Administrator */ @Route(Path="/accounts/{accountId}", Verbs="DELETE") @Api(Description="Deletes the specified account and everything in it. Can only be performed by a System Administrator") open class DeleteAccount : IReturnVoid, IDelete { /** * The ID of the account to delete */ @ApiMember(Description="The ID of the account to delete") open var accountId:String? = null }