(* Options: Date: 2026-04-04 04:52: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: AddConnectionsInRole.* //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 GuidLookup() = member val LookupId:Guid = new Guid() with get,set member val Value: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 ConnectContactsInRolesResponse() = member val ResponseStatus:ResponseStatus = null with get,set /// ///Connect two contacts in the specified roles /// [] [] [] type AddConnectionsInRole() = interface IReturn /// ///Create a connection from this contact to the specified list of contacts in the specified role. /// [] member val ContactId:Guid = new Guid() with get,set /// ///List of contacts to add to the role, including the type of contact /// [", Description="List of contacts to add to the role, including the type of contact", IsRequired=true, Name="ToContacts")>] member val ToContacts:ResizeArray = null with get,set /// ///Create a connection between contacts in the specified role. /// [] member val RoleId:Guid = new Guid() with get,set /// ///Send connection emails for auto - accept roles that are being assigned? Note: emails will always be sent if the role requires user acceptance /// [] member val SendConnectionEmails:Boolean = new Boolean() with get,set