/* Options: Date: 2025-05-04 23:13:40 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: DeleteAddress.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete the specified address */ // @Route("/addresses/{addressId}", "DELETE") // @Api(Description="Delete the specified address") public class DeleteAddress : IReturnVoid, Codable { public var accountId:String? /** * The ID of the address you want to delete */ // @ApiMember(Description="The ID of the address you want to delete") public var addressId:String? required public init(){} }