(* Options: Date: 2026-04-04 04:53: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: GetPermissionMatrix.* //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 PermissionLevelModel() = member val PermissionValueId:Nullable = new Nullable() with get,set member val ObjectId:Guid = new Guid() with get,set member val ObjectName:String = null with get,set member val ObjectGroup:String = null with get,set member val ContactsAffected:Int32 = new Int32() with get,set member val PermissionValue:Nullable = new Nullable() 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 GetPermissionMatrixResponse() = member val PermissionLevelValue:Boolean = new Boolean() with get,set member val PermissionsMatrix:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get a value for the current permission and object. Including the relevant data that affects the permission value outcome. /// [] [] [] type GetPermissionMatrix() = interface IReturn /// ///Permission Id to retrieve matrix for. /// [] member val PermissionId:Guid = new Guid() with get,set /// ///Object Id to retrieve permissions for. This will be either a contact, role list item or licensee contact. /// [] member val ObjectId:Guid = new Guid() with get,set