(* Options: Date: 2026-04-04 03:05:15 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: UpdateContactNotifications.* //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 NotificationItem() = member val Id:Guid = new Guid() with get,set member val Name:String = null with get,set /// ///Updates contact notifications /// [] [] [] type UpdateContactNotifications() = interface IReturn /// ///Id of contact to get notification for /// [] member val ContactId:Guid = new Guid() with get,set /// ///Id of licensee to get notification for /// [] member val LicenseeId:Guid = new Guid() with get,set /// ///Id of suite to get notification for /// [] member val SuiteId:Guid = new Guid() with get,set /// ///List of notification to update /// [] member val Notifications:ResizeArray = null with get,set