/* Options: Date: 2025-05-04 23:36:07 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: DeleteCustomer.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack /** * Delete the specified customer */ // @Route("/customers/{customerId}", "DELETE") // @Api(Description="Delete the specified customer") public class DeleteCustomer : IReturnVoid, IDelete, Codable { /** * The ID of the customer to delete */ // @ApiMember(Description="The ID of the customer to delete") public var customerId:String? required public init(){} }