(* Options: Date: 2026-04-04 06:54:52 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: GetContactNotifications.* //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 InputSwitch() = member val Id:String = null with get,set member val Name:String = null with get,set member val IsDisabled:Boolean = new Boolean() with get,set member val IsChecked:Boolean = new Boolean() with get,set [] type NotificationDetails() = member val NotificationId:Guid = new Guid() with get,set member val NotificationGroupName:String = null with get,set member val NotificationValueId:Guid = new Guid() with get,set member val Name:String = null with get,set member val Description:String = null with get,set member val IsMandatory:Boolean = new Boolean() with get,set member val IsCardinality:Boolean = new Boolean() with get,set member val IsSystem:Boolean = new Boolean() with get,set member val IsVisibleToRecipients:Boolean = new Boolean() with get,set member val Index:Int32 = new Int32() with get,set member val Email:InputSwitch = null with get,set member val SMS:InputSwitch = null with get,set member val UpdateNotification:InputSwitch = null with get,set member val Push:InputSwitch = null with get,set member val Phone:InputSwitch = null with get,set [] type NotificationGroup() = member val GroupName:String = null with get,set member val Notifications:ResizeArray = 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 GetContactNotificationsResponse() = member val Notifications:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get notifications for the specified contact /// [] [] [] type GetContactNotifications() = interface IReturn /// ///Id of contact to get notifications for /// [] member val ContactId:Guid = new Guid() with get,set /// ///Id of licensee to get notifications for /// [] member val LicenseeId:Guid = new Guid() with get,set /// ///Id of suite to get notifications for /// [] member val SuiteId:Guid = new Guid() with get,set