(* Options: Date: 2026-09-23 07:35:54 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.dev //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: UpdateArticleMappings.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace BokaMera.API.ServiceModel.Dtos open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.Globalization open ServiceStack.Data open System.Net open System.Net.Http.Headers [] type ICompany = abstract CompanyId:Nullable with get,set [] type ArticleMappingToHandle() = /// ///The id of an existing mapping to update; leave empty to create a new one /// [] member val Id:Nullable = new Nullable() with get,set /// ///The BokaMera article id /// [] member val ArticleId:Int32 = new Int32() with get,set /// ///The Reference Type: StripeArticle = 1, EAccountingArticle = 2 /// [] member val ReferenceType:String = null with get,set /// ///The external reference; Values for EAccountingArticle, StripeArticle /// [] member val ExternalReference:String = null with get,set [] type ArticleMappingResponse() = /// ///The company id /// [] member val CompanyId:Guid = new Guid() with get,set /// ///The id /// [] member val Id:Guid = new Guid() with get,set /// ///The BokaMera article id /// [] member val ArticleId:Int32 = new Int32() with get,set /// ///The external reference /// [] member val ExternalReference:String = null with get,set /// ///The Reference Type /// [] member val ReferenceType:String = null with get,set [] [] [] type UpdateArticleMappings() = interface IReturn> /// ///Company to update article mappings for /// [] member val CompanyId:Nullable = new Nullable() with get,set /// ///The article mappings to create or update /// [] member val ArticleMappings:ResizeArray = null with get,set