/* Options: Date: 2025-05-04 23:34:23 SwiftVersion: 6.0 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: DeleteAccount.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Deletes the specified account and everything in it. Can only be performed by a System Administrator */ // @Route("/accounts/{accountId}", "DELETE") // @Api(Description="Deletes the specified account and everything in it. Can only be performed by a System Administrator") public class DeleteAccount : IReturnVoid, IDelete, Codable { /** * The ID of the account to delete */ // @ApiMember(Description="The ID of the account to delete") public var accountId:String? required public init(){} }