/* Options: Date: 2025-12-06 07:08:27 SwiftVersion: 6.0 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: PromoteCustomBrandToGlobalBrandRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/brand/promote_custom_to_global", "POST") public class PromoteCustomBrandToGlobalBrandRequest : IReturn, IPost, Codable { public typealias Return = PromoteCustomBrandToGlobalBrandResponse public var placeCustomBrandId:Int? public var brandName:String? public var brandId:Int? required public init(){} } public class PromoteCustomBrandToGlobalBrandResponse : Codable { public var promotedGlobalBrandId:Int? required public init(){} }