/* Options: Date: 2026-01-12 02:42:19 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://qa-business-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PlaceRemoveBarTypeRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/place/remove_bar_type", "DELETE") public class PlaceRemoveBarTypeRequest : IReturn, IDelete, IHasPlaceId, Codable { public typealias Return = PlaceRemoveBarTypeResponse public var placeId:Int? public var barTypeSlug:String? required public init(){} } public class PlaceRemoveBarTypeResponse : Codable { public var barTypeSlug:String? required public init(){} } public protocol IHasPlaceId { var placeId:Int? { get set } }