(* Options: Date: 2026-04-04 01:02:37 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: GetObjectSubscriptions.* //ExcludeTypes: //InitializeCollections: False //AddNamespaces: *) namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type ObjectSubscriptionDetailModel() = /// ///ID for the objectSubscription record. /// [] member val ObjectSubscriptionId:Guid = new Guid() with get,set /// ///Id of the Suite DataSource Instance Id. /// [] member val SuiteDataSourceInstanceId:Guid = new Guid() with get,set /// ///Suite DataSource Instance Name. /// [] member val SuiteDataSourceName:String = null with get,set /// ///Id indicating the RmsTableCtx of the object. /// [] member val RmsTableContextId:Guid = new Guid() with get,set /// ///Id of the integrated object. /// [] member val ObjectId:Guid = new Guid() with get,set /// ///Unique Key of this object in the external Data Source. /// [] member val AlternateKey:String = null with get,set /// ///Date the object was integrated. /// [] member val CreatedAt:DateTime = new DateTime() with get,set /// ///Record Status of the object subscription. /// [] member val RecordStatus:String = null with get,set /// ///Id of the Suite Instance. /// [] member val SuiteInstanceId:Guid = new Guid() with get,set /// ///Suite Instance Name. /// [] member val SuiteInstanceName:String = null 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 GetObjectSubscriptionsResponse() = member val ObjectSubscriptions:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get object subscriptions for the specified object /// [] [] [] type GetObjectSubscriptions() = interface IReturn /// ///Get active/inactive object subscriptions for the specified object /// [] member val ObjectId:Guid = new Guid() with get,set