(* Options: Date: 2026-04-04 06:48:38 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: ConnectContactsInRoles.* //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 ConnectContactsInRolesResponse() = member val ResponseStatus:ResponseStatus = null with get,set /// ///Connect two contacts in the specified roles /// [] [] [] type ConnectContactsInRoles() = interface IReturn /// ///Create a connection from this contact to the specified to contact in the specified roles. /// [] member val ContactId:Guid = new Guid() with get,set /// ///Create a connection to this contact from the specified to contact in the specified roles. /// [] member val ToContactId:Guid = new Guid() with get,set /// ///Type of contact being connected with. For e.g. Real Person, Virtual Person etc. /// [] member val ContactTypeId:Guid = new Guid() with get,set /// ///List of roles to connect contacts in /// [", Description="List of roles to connect contacts in", IsRequired=true, Name="Roles")>] member val Roles:ResizeArray = null 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