/* Options: Date: 2026-04-04 03:04:18 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetConnectedContacts.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UserContactConnectionModel { /** @description The Contact Role Id, that links the Contact to their role. */ // @ApiMember(DataType="Guid", Description="The Contact Role Id, that links the Contact to their role.", Name="ContactRoleId", ParameterType="query") public ContactRoleId: string; /** @description The role name. */ // @ApiMember(DataType="string", Description="The role name.", Name="ContactRoleName", ParameterType="query") public ContactRoleName: string; /** @description The list item role Id. */ // @ApiMember(DataType="Guid", Description="The list item role Id.", Name="ContactListItemRoleId", ParameterType="query") public ContactListItemRoleId: string; /** @description The URL of the contact role's image icon. */ // @ApiMember(DataType="string", Description="The URL of the contact role's image icon.", Name="ContactRolePrimaryImageURL", ParameterType="query") public ContactRolePrimaryImageURL: string; /** @description The URL of the contact role's thumbnail image icon. */ // @ApiMember(DataType="string", Description="The URL of the contact role's thumbnail image icon.", Name="ContactRolePrimaryImageThumbnailURL", ParameterType="query") public ContactRolePrimaryImageThumbnailURL: string; /** @description The Guid of the contact role's media file containing the image icon details. */ // @ApiMember(DataType="string", Description="The Guid of the contact role's media file containing the image icon details.", Name="ContactRolePrimaryImageId", ParameterType="query") public ContactRolePrimaryImageId: string; /** @description The connected contacts Id. (licensee) */ // @ApiMember(DataType="string", Description="The connected contacts Id. (licensee)", Name="ConnectionContactId", ParameterType="query") public ConnectionContactId: string; /** @description The connected contacts Full Name. */ // @ApiMember(DataType="string", Description="The connected contacts Full Name.", Name="ConnectionContactName", ParameterType="query") public ConnectionContactName: string; /** @description The connected contacts role. */ // @ApiMember(DataType="string", Description="The connected contacts role.", Name="ConnectionContactRoleName", ParameterType="query") public ConnectionContactRoleName: string; /** @description The connected contacts role Id. */ // @ApiMember(DataType="Guid", Description="The connected contacts role Id.", Name="ConnectionContactRoleId", ParameterType="query") public ConnectionContactRoleId: string; /** @description The connected contacts list item role Id. */ // @ApiMember(DataType="Guid", Description="The connected contacts list item role Id.", Name="ConnectionContactListItemRoleId", ParameterType="query") public ConnectionContactListItemRoleId: string; /** @description The Contacts Type. */ // @ApiMember(DataType="string", Description="The Contacts Type.", Name="ContactTypeName", ParameterType="query") public ContactTypeName: string; /** @description The URL to the Connected Contacts Photo. */ // @ApiMember(DataType="string", Description="The URL to the Connected Contacts Photo.", Name="ConnectionContactPhotoURL", ParameterType="query") public ConnectionContactPhotoURL: string; /** @description . */ // @ApiMember(DataType="bool", Description=".", Name="IsContactLicenseeRole", ParameterType="query") public IsContactLicenseeRole: boolean; /** @description If the connection is as a licensee this is true. */ // @ApiMember(DataType="bool", Description="If the connection is as a licensee this is true.", Name="IsConnectionLicenseeRole", ParameterType="query") public IsConnectionLicenseeRole: boolean; /** @description The status of the connection with the contact. */ // @ApiMember(DataType="string", Description="The status of the connection with the contact.", Name="ConnectionStatusName", ParameterType="query") public ConnectionStatusName: string; /** @description The status Id of the connection with the contact. */ // @ApiMember(DataType="Guid", Description="The status Id of the connection with the contact.", Name="ConnectionStatusId", ParameterType="query") public ConnectionStatusId: string; /** @description The ContactRoleConnectionId of an active connection with the contact. */ // @ApiMember(DataType="Guid", Description="The ContactRoleConnectionId of an active connection with the contact.", Name="ConnectionId", ParameterType="query") public ConnectionId: string; /** @description The ContactRoleConnectionRequest of a pending connection with the contact. */ // @ApiMember(DataType="Guid", Description="The ContactRoleConnectionRequest of a pending connection with the contact.", Name="ConnectionRequestId", ParameterType="query") public ConnectionRequestId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class ContactEmailAddress { /** @description The Contact Id of the contact. */ // @ApiMember(DataType="Guid", Description="The Contact Id of the contact.", Name="ContactId", ParameterType="query") public ContactId: string; /** @description The Contact Full Name */ // @ApiMember(DataType="string", Description="The Contact Full Name", Name="ContactName", ParameterType="query") public ContactName: string; /** @description The Contact Email Address. */ // @ApiMember(DataType="string", Description="The Contact Email Address.", Name="EmailAddress", ParameterType="query") public EmailAddress: string; /** @description The Contact Photo URL */ // @ApiMember(DataType="string", Description="The Contact Photo URL", Name="ContactPhotoURL", ParameterType="query") public ContactPhotoURL: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class UserContacts { /** @description A list of contact connections assigned to the user. */ // @ApiMember(DataType="List", Description="A list of contact connections assigned to the user.", Name="ContactConnections", ParameterType="query") public ContactConnections: UserContactConnectionModel[]; /** @description A list of connected contacts and their email addresses. */ // @ApiMember(DataType="List", Description="A list of connected contacts and their email addresses.", Name="EmailAddressBook", ParameterType="query") public EmailAddressBook: ContactEmailAddress[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } /** @description Returns a list of contacts connected to a user profiles' contact. */ // @Api(Description="Returns a list of contacts connected to a user profiles' contact.") export class GetConnectedContacts implements IReturn { /** @description The user's Guid. Contacts retrieved will be connected to this user. */ // @ApiMember(DataType="Guid", Description="The user's Guid. Contacts retrieved will be connected to this user.", IsRequired=true, Name="UserId", ParameterType="query") public UserId: string; /** @description The user profiles Contact Guid. Contacts connected to the user will be filted by this profiles contact ID. */ // @ApiMember(DataType="Guid", Description="The user profiles Contact Guid. Contacts connected to the user will be filted by this profiles contact ID.", IsRequired=true, Name="ContactId", ParameterType="query") public ContactId: string; /** @description The suite id list. Gets contacts connected to the user filted by the suite IDs in this list.. */ // @ApiMember(DataType="List", Description="The suite id list. Gets contacts connected to the user filted by the suite IDs in this list..", Name="SuiteIds", ParameterType="query") public SuiteIds: string[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetConnectedContacts'; } public getMethod() { return 'GET'; } public createResponse() { return new UserContacts(); } }