/* Options: Date: 2026-01-12 02:42:51 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: MallUpdateOtherServiceRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/mall/update_other_service", "POST") public class MallUpdateOtherServiceRequest : IReturn, IPost, IHasMallOtherServiceId, Codable { public typealias Return = MallUpdateOtherServiceResponse public var mallOtherServiceId:Int? public var floor:String? public var serviceName:String? required public init(){} } public class MallUpdateOtherServiceResponse : Codable { public var updated:MallOtherServiceDto? required public init(){} } public protocol IHasMallOtherServiceId { var mallOtherServiceId:Int? { get set } } public class MallOtherServiceDto : Codable { public var id:Int? public var serviceName:String? public var floor:String? required public init(){} }