(* Options: Date: 2025-04-04 19:30:36 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetVossProducts.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.IO open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set type TypeEnum = | Main = 1 | Addon = 2 | License = 3 | Usage = 4 type StatusEnum = | Published = 1 | Disabled = 2 [] [] type ProductResultProductFamilyDto() = [] member val Id:Guid = new Guid() with get,set [] member val ExternalId:String = null with get,set [] [] type ProductResult() = [] member val Type:TypeEnum = new TypeEnum() with get,set [] member val Status:StatusEnum = new StatusEnum() with get,set [] member val Id:Guid = new Guid() with get,set [] member val Name:String = null with get,set [] member val ExternalId:String = null with get,set [] member val ArticleNumber:String = null with get,set [] member val ProductFamily:ProductResultProductFamilyDto = null with get,set [] [] type SearchProductsResult() = [] member val Items:ResizeArray = new ResizeArray() with get,set [] member val TotalCount:Int32 = new Int32() with get,set [] member val PageIndex:Int32 = new Int32() with get,set [] member val PageSize:Int32 = new Int32() with get,set [] member val TotalPages:Int32 = new Int32() with get,set [] [] [] type GetVossProducts() = interface IReturn /// ///The company id, if empty will use the company id for the user you are logged in with. /// [] member val CompanyId:Nullable = new Nullable() with get,set