(* Options: Date: 2025-08-04 03:12:15 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddPurchaseOrderFileComment.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Portal.Common open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type PurchaseOrderBase() = member val PurchaseOrderId:Int32 = new Int32() with get,set member val SupplierUserId:Int32 = new Int32() with get,set [] type PurchaseOrderVersionBase() = inherit PurchaseOrderBase() member val PurchaseOrderVersionId:Int32 = new Int32() with get,set type PurchaseOrderDocumentType = | Draft = 0 | Comment = 1 [] type AddPurchaseOrderVersionFileBase() = inherit PurchaseOrderVersionBase() member val DocumentType:PurchaseOrderDocumentType = new PurchaseOrderDocumentType() with get,set [] type ModifyEntityResponse() = inherit ResponseBase() member val Id:Int32 = new Int32() with get,set [] type SaveFileEntityResponse() = inherit ModifyEntityResponse() member val FileContentId:Int32 = new Int32() with get,set [] [] type AddPurchaseOrderFileComment() = inherit AddPurchaseOrderVersionFileBase() interface IReturn interface IPost member val DocumentType:PurchaseOrderDocumentType = new PurchaseOrderDocumentType() with get,set