(* Options: Date: 2025-12-06 06:40:59 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: LookupBrandsByRootCategoryRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type BrandDto() = member val Id:Int64 = new Int64() with get,set member val DefinedByRootCategoryId:Int64 = new Int64() with get,set member val Name:String = null with get,set [] type LookupBrandsByRootCategoryResponse() = member val Brands:ResizeArray = new ResizeArray() with get,set [] [] type LookupBrandsByRootCategoryRequest() = interface IReturn interface IGet member val Query:String = null with get,set member val RootCategoryId:Int64 = new Int64() with get,set member val Size:Nullable = new Nullable() with get,set member val Offset:Nullable = new Nullable() with get,set