(* Options: Date: 2026-04-04 06:47:35 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: GetContactRolesForLicensee.* //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 GetContactRolesForLicenseeResponse() = member val Roles:ResizeArray = null with get,set member val ResponseStatus:ResponseStatus = null with get,set /// ///Get contact roles (custom and/or standard) for the specified licensee /// [] [] [] type GetContactRolesForLicensee() = interface IReturn /// ///Get contact roles (custom and/or standard) for the specified licensee /// [] member val LicenseeId:Guid = new Guid() with get,set /// ///Contact Types /// [", Description="Contact Types", Name="ContactTypes", ParameterType="query")>] member val ContactTypes:ResizeArray = null with get,set /// ///Custom/Standard filter /// [", Description="Custom/Standard filter", Name="OwnerFilterIds", ParameterType="query")>] member val OwnerFilterIds:ResizeArray = null with get,set /// ///Active/Archived filter /// [] member val RecordStatus:String = null with get,set /// ///Text filter /// [] member val SearchText:String = null with get,set