(* Options: Date: 2026-04-04 01:02:04 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: GetObjectReads.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Saguna.Common.WebAPIModel.Models open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ObjectAccessModel() = /// ///Object Access Read Id. /// [] member val ObjectReadId:Guid = new Guid() with get,set /// ///Object Id viewing the specified Object. /// [] member val ViewingObjectId:Guid = new Guid() with get,set /// ///Name of the object viewing the specified Object. /// [] member val ViewingObjectName:String = null with get,set /// ///Name of the object viewing the specified Object. /// [] member val ViewingObjectPrimaryImageUrl:String = null with get,set /// ///Id of the object being viewed. /// [] member val ViewedObjectId:Guid = new Guid() with get,set /// ///Name of the object being viewed. /// [] member val ViewedObjectName:String = null with get,set /// ///Date and Time of object read /// [] member val TimeRead:Nullable = new Nullable() with get,set /// ///Date and Time object started watching the specified object. /// [] member val TimeStartWatching:Nullable = new Nullable() with get,set /// ///Date and Time of object being flagged. /// [] member val Flagged:DateTime = new DateTime() with get,set [] [] 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 GetObjectReadsResponse() = member val ObjectReads:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get reads (object access) for the specified object. /// [] [] [] type GetObjectReads() = interface IReturn /// ///Object Id to get object access reads for /// [] member val ObjectId:Guid = new Guid() with get,set