(* Options: Date: 2025-04-24 17:19:42 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: UpdateCompanyInvoiceArticle.* //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 CompanyInvoiceArticleQueryResponse() = member val Name:String = null with get,set member val LicenseTypeId:Nullable = new Nullable() with get,set member val LicenseProductTypeId:Int32 = new Int32() with get,set member val IsMainLicense:Boolean = new Boolean() with get,set member val VossProductGroupId:Guid = new Guid() with get,set member val Id:Int32 = new Int32() with get,set [] [] [] [] type UpdateCompanyInvoiceArticle() = interface IReturn /// ///Invoice article No in Db. /// [] member val Id:Int32 = new Int32() with get,set /// ///Invoice article Name /// [] member val Name:String = null with get,set /// ///Invoice article Name /// [] member val LicenseTypeId:Nullable = new Nullable() with get,set /// ///Invoice LicenseProductTypeId /// [] member val LicenseProductTypeId:Nullable = new Nullable() with get,set /// ///Invoice article is TIER license /// [] member val IsMainLicense:Nullable = new Nullable() with get,set /// ///Invoice VossProductGroupId reference /// [] member val VossProductGroupId:Nullable = new Nullable() with get,set