(* Options: Date: 2026-04-04 04:53:39 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: IsConnectedInRole.* //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 IsConnectedInRoleResponse() = /// ///True or false depending on if the contact is connected to the licensee in the role. /// [] member val IsConnected:Boolean = new Boolean() with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Return true/false if a contact is connected to a licensee in a specific role. /// [] [] [] type IsConnectedInRole() = interface IReturn /// ///Contact Id of the contact to determine if they have the role with the licensee. /// [] member val ContactId:Guid = new Guid() with get,set /// ///Role to check for. /// [] member val RoleId:Guid = new Guid() with get,set /// ///Licensee Contact Id we are checking if we're connected to. /// [] member val LicenseeId:Guid = new Guid() with get,set