/* Options: Date: 2025-12-06 07:50:13 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: GetAllParkingRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/parking/get_all", "GET") public class GetAllParkingRequest : IReturn, IGet, Codable { public typealias Return = GetAllParkingResponse required public init(){} } public class GetAllParkingResponse : Codable { public var parking:[ParkingDto] = [] required public init(){} } public enum Parking : String, Codable { case StreetParking case ParkingGarageNearby } public class ParkingDto : Codable { public var label:String? public var slug:Parking? required public init(){} }