(* Options: Date: 2026-04-04 03:04:24 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: SavePermissionValue.* //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 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 SavePermissionValueResponse() = member val ResponseStatus:ResponseStatus = null with get,set /// ///Save change to a Permission value. /// [] [] [] [] [] type SavePermissionValue() = interface IReturn /// ///A permission Id that we're saving the permission for. /// [] member val PermissionId:Guid = new Guid() with get,set /// ///The object to save a permission for. This will either be a contact or role list item. Leave this blank if we're saving for the licensee. /// [] member val ObjectId:Guid = new Guid() with get,set /// ///Value to set the permission to, may be true, false or null. /// [] member val PermissionValue:Nullable = new Nullable() with get,set