/* Options: Date: 2024-06-17 15:51:04 SwiftVersion: 5.0 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: DeleteCustomerComments.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/customers/{CustomerId}/comments/{Id}", "DELETE") // @ApiResponse(Description="Returned if there is a validation error on the input parameters", StatusCode=400) // @ApiResponse(Description="Returned if the current user is not allowed to perform the action", StatusCode=401) // @ValidateRequest(Validator="IsAuthenticated") public class DeleteCustomerComments : IReturn, ICompany, Codable { public typealias Return = CustomerCommentsResponse // @ApiMember(IsRequired=true, ParameterType="path") public var id:Int // @ApiMember(IsRequired=true, ParameterType="path") public var customerId:String // @ApiMember() public var companyId:String? required public init(){} } public class CustomerCommentsResponse : Codable { public var id:Int public var customerId:String public var comments:String public var updated:Date public var created:Date public var imageUrl:Uri required public init(){} } public protocol ICompany { var companyId:String? { get set } }