/* Options: Date: 2025-09-13 18:32:31 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: CreateCustomerComments.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/customers/{CustomerId}/comments", "POST") // @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 CreateCustomerComments : IReturn, ICompany, Codable { public typealias Return = CustomerCommentsResponse // @ApiMember(IsRequired=true, ParameterType="path") public var customerId:String? // @ApiMember(IsRequired=true) public var comments:String? // @ApiMember() public var imageUrl:Uri? // @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 } }