(* Options: Date: 2026-04-04 06:54:23 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: InviteContact.* //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 AddContactResponse() = member val ContactId:Guid = new Guid() with get,set member val ResponseStatus:ResponseStatus = null with get,set [] [] [] type InviteContact() = interface IReturn /// ///Contact Id inviting the contact /// [] member val ContactId:Guid = new Guid() with get,set /// ///Contact Id of the virtual contact invited to be real. /// [] member val ToContactId:Guid = new Guid() with get,set /// ///Email Address of the real/ virtual contact to be invited. /// [] member val EmailAddress:String = null with get,set /// ///List of roles to invite the contact /// [", Description="List of roles to invite the contact", IsRequired=true, Name="Roles")>] member val Roles:ResizeArray = null with get,set