(* Options: Date: 2026-04-04 02:56:54 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: GetRolesForConnection.* //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 RoleModel() = /// ///Role Id /// [] member val RoleId:Guid = new Guid() with get,set /// ///Role Name /// [] member val RoleName:String = null with get,set /// ///Is the role a licensee role? /// [] member val IsLicenseeRole:Boolean = new Boolean() with get,set /// ///Is manage contacts role? /// [] member val IsManageContacts:Boolean = new Boolean() with get,set /// ///Is the role a Platform role? /// [] member val IsPlatformRole:Boolean = new Boolean() with get,set /// ///Is the role a services role? /// [] member val IsServiceRole:Boolean = new Boolean() with get,set /// ///Is the role a customer role? /// [] member val IsCustomerRole:Boolean = new Boolean() with get,set /// ///Is the role a functional role? /// [] member val IsFunctionalRole:Boolean = new Boolean() with get,set /// ///Is the role an auto-accept role? /// [] member val IsRequestAutoAccepted:Boolean = new Boolean() with get,set /// ///Suite that the role belongs to /// [] member val SuiteId:Guid = new Guid() with get,set /// ///Suite that the role belongs to /// [] member val SuiteName:String = null with get,set /// ///'A' (Active) or 'I' (Inactive) /// [] member val RecordStatus:String = null with get,set /// ///Object Connection Id, which is populated when the roles are returned based on those that are connected to an object. /// [] member val ObjectConnectionId:Guid = new Guid() 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 GetRolesForConnectionResponse() = member val Roles:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get roles for the specified contact /// [] [] [] type GetRolesForConnection() = interface IReturn /// ///Get roles available for connection from this contact /// [] member val FromContactId:Guid = new Guid() with get,set /// ///Get roles available for connection to this contact /// [] member val ContactId:Nullable = new Nullable() with get,set /// ///Get roles available for connection for the specified contact type /// [] member val ContactTypeId:Guid = new Guid() with get,set