(* Options: Date: 2026-04-04 02:55:01 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GenerateReferenceNumber.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPIModel.ServiceModels open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] [] type ResponseStatus() = [] member val ErrorCode:String = null with get,set [] member val Message:String = null with get,set [] member val StackTrace:String = null with get,set [] member val Errors:ResizeArray = null with get,set [] member val Meta:Dictionary = null with get,set [] [] type GenerateReferenceNumberResponse() = member val Reference:String = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Generate a unique reference number for the object. /// [] [] [] type GenerateReferenceNumber() = interface IReturn /// ///Appliance to generate object reference for. /// [] member val ApplianceId:Guid = new Guid() with get,set