/* Options: Date: 2025-05-04 22:34:21 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DeleteAccount.* //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 { /** * 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") public static class DeleteAccount implements IReturnVoid, IDelete { /** * The ID of the account to delete */ @ApiMember(Description="The ID of the account to delete") public String accountId = null; public String getAccountId() { return accountId; } public DeleteAccount setAccountId(String value) { this.accountId = value; return this; } } }