(* Options: Date: 2026-04-04 06:45:20 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: GetRolesForAutomationNotifications.* //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 GroupedListItemModel() = member val ListItemId:Guid = new Guid() with get,set member val Name:String = null with get,set member val GroupId:Guid = new Guid() with get,set member val GroupName: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 GetRolesForAutomationNotificationsResponse() = /// ///List of all roles (grouped by suite) that can be assigned to a notification. /// [] member val AllRoles:ResizeArray = null with get,set /// ///List of roles that are already assigned to an email notification for the object, these should be excluded from being selected again. /// [] member val RolesUsedEmail:ResizeArray = null with get,set /// ///List of roles that are already assigned to an sms notification for the object, these should be excluded from being selected again. /// [] member val RolesUsedSMS:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get eligible roles for automation notifications /// [] [] [] [] type GetRolesForAutomationNotifications() = inherit GetRolesForAutomationNotificationsResponse() interface IReturn /// ///Object the notification will be for. Used to exclude any currently assigned roles. /// [] member val ObjectId:Guid = new Guid() with get,set