/* Options: Date: 2025-12-06 07:50:58 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: PlaceUpdateWearPriceProfileRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/place/update_wear_price_profile", "PUT") public class PlaceUpdateWearPriceProfileRequest : IReturn, IPut, IHasPlaceId, Codable { public typealias Return = PlaceUpdateWearPriceProfileResponse public var placeId:Int? public var wearPriceProfileSlug:[String] = [] required public init(){} } public class PlaceUpdateWearPriceProfileResponse : Codable { public var wearPriceProfileSlug:[String] = [] required public init(){} } public protocol IHasPlaceId { var placeId:Int? { get set } }