(* Options: Date: 2026-02-14 10:13:07 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: AddCustomerMaster.* //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 CustomerMasterMessage() = member val DataSource:TransactionalParty = null with get,set member val DataRecipient:TransactionalParty = null with get,set member val CustomerMasterIdentification:String = null with get,set member val Customer:ResizeArray = null with get,set member val DocumentStatusCode:String = null with get,set member val DocumentActionCode:String = null with get,set member val CreationDateTime:DateTime = new DateTime() with get,set member val LastUpdateDateTime:DateTime = new DateTime() with get,set [] type TokenDto() = member val Token:Guid = new Guid() with get,set /// ///Customer Master /// [] [] [] [, StatusCode=403)>] [] type AddCustomerMaster() = interface IReturn /// ///Customer Master model containing all of the Customer Master data /// [] member val CustomerMaster:CustomerMasterMessage = null with get,set