(* Options: Date: 2026-02-14 10:09:37 Version: 10.04 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stf-api-uat.data-xchange.co.za //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: AddPurchaseCondition.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace DX.Framework.Core.Commands open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ICommandResponse = interface end [] type PurchaseConditionsMessage() = member val Header:Header = null with get,set member val PurchaseConditions:PurchaseConditions = null with get,set [] type TokenDto() = member val Token:Guid = new Guid() with get,set /// ///Purchase Conditions /// [] [] [] [, StatusCode=403)>] [] type AddPurchaseCondition() = interface IReturn /// ///Purchase Condition model containing all of the Purchase Condition data /// [] member val PurchaseConditions:PurchaseConditionsMessage = null with get,set