/* Options: Date: 2025-05-04 23:06:30 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: DeleteAddress.* //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.* /** * Delete the specified address */ @Route(Path="/addresses/{addressId}", Verbs="DELETE") @Api(Description="Delete the specified address") open class DeleteAddress : IReturnVoid { open var accountId:String? = null /** * The ID of the address you want to delete */ @ApiMember(Description="The ID of the address you want to delete") open var addressId:String? = null }