/* Options: Date: 2026-04-04 04:54:54 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: False //ExportValueTypes: False IncludeTypes: GetContactRoleDetails.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using Eros.Saguna.Common.WebAPIModel.Models; using Eros.Subtle.Canvara.WebAPIModel.ServiceModel; namespace Eros.Saguna.Common.WebAPIModel.Models { public partial class ListItemFilterModel { public virtual Guid ListItemFilterId { get; set; } public virtual string FilterName { get; set; } public virtual Guid ListId { get; set; } public virtual Guid ListItemId { get; set; } public virtual bool ListItemIsInFilter { get; set; } } public partial class ObjectShareModel { public virtual Guid ObjectShareId { get; set; } public virtual Guid ObjectId { get; set; } public virtual string ObjectName { get; set; } public virtual string Name { get; set; } public virtual string Description { get; set; } public virtual string Reference { get; set; } public virtual Guid ContactId { get; set; } public virtual string ContactName { get; set; } public virtual string ContactType { get; set; } public virtual string ContactImageUrlPrimary { get; set; } public virtual string ContactImageUrlPrimaryThmbnail { get; set; } public virtual Guid ShareStatusId { get; set; } public virtual string ShareStatusName { get; set; } } public partial class PagedModel { /// ///Page Number to retrieve /// [ApiMember(DataType="int", Description="Page Number to retrieve", Name="PageNumber")] public virtual int PageNumber { get; set; } /// ///Number of records to retrieve /// [ApiMember(DataType="int", Description="Number of records to retrieve", Name="PageSize")] public virtual int PageSize { get; set; } /// ///Index of field to sort results by /// [ApiMember(DataType="int", Description="Index of field to sort results by", Name="SortIndex")] public virtual int SortIndex { get; set; } /// ///Sort Order - Ascending or Descending /// [ApiMember(DataType="int", Description="Sort Order - Ascending or Descending", Name="SortOrder")] public virtual SortOrder SortOrder { get; set; } } public enum SortOrder { Ascending, Descending, } public partial class UserProfileSummaryModel { /// ///User Profile Id /// [ApiMember(DataType="Guid", Description="User Profile Id", Name="UserProfileId")] public virtual Guid UserProfileId { get; set; } /// ///User linked to the profile /// [ApiMember(DataType="Guid", Description="User linked to the profile", Name="UserId")] public virtual Guid UserId { get; set; } /// ///Contact linked to the profile /// [ApiMember(DataType="Guid", Description="Contact linked to the profile", Name="ContactId")] public virtual Guid ContactId { get; set; } /// ///User linked to the profile /// [ApiMember(DataType="string", Description="User linked to the profile", Name="UserName")] public virtual string UserName { get; set; } /// ///User Profile Name /// [ApiMember(DataType="string", Description="User Profile Name", Name="ProfileName")] public virtual string ProfileName { get; set; } /// ///Full name of the contact linked to the profile /// [ApiMember(DataType="string", Description="Full name of the contact linked to the profile", Name="ContactFullName")] public virtual string ContactFullName { get; set; } /// ///Email Address of the contact linked to the profile /// [ApiMember(DataType="string", Description="Email Address of the contact linked to the profile", Name="EmailAddress")] public virtual string EmailAddress { get; set; } /// ///Email signature of the contact linked to the profile /// [ApiMember(DataType="string", Description="Email signature of the contact linked to the profile", Name="EmailSignature")] public virtual string EmailSignature { get; set; } /// ///Mobile number of the contact linked to the profile /// [ApiMember(DataType="string", Description="Mobile number of the contact linked to the profile", Name="MobileNumber")] public virtual string MobileNumber { get; set; } /// ///Phone number of the contact linked to the profile /// [ApiMember(DataType="string", Description="Phone number of the contact linked to the profile", Name="PhoneNumber")] public virtual string PhoneNumber { get; set; } /// ///Type of contact (person, organisation etc.) linked to the profile /// [ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeId")] public virtual Guid ContactTypeId { get; set; } /// ///Type of contact (person, organisation etc.) linked to the profile /// [ApiMember(DataType="string", Description="Type of contact (person, organisation etc.) linked to the profile", Name="ContactTypeName")] public virtual string ContactTypeName { get; set; } /// ///First name of the contact linked to the profile /// [ApiMember(DataType="string", Description="First name of the contact linked to the profile", Name="FirstName")] public virtual string FirstName { get; set; } /// ///Surname of the contact linked to the profile /// [ApiMember(DataType="string", Description="Surname of the contact linked to the profile", Name="Surname")] public virtual string Surname { get; set; } /// ///Title of contact linked to the profile /// [ApiMember(DataType="string", Description="Title of contact linked to the profile", Name="Title")] public virtual string Title { get; set; } /// ///Legal name of contact linked to the profile /// [ApiMember(DataType="string", Description="Legal name of contact linked to the profile", Name="LegalName")] public virtual string LegalName { get; set; } /// ///Trading name of contact linked to the profile /// [ApiMember(DataType="string", Description="Trading name of contact linked to the profile", Name="TradingName")] public virtual string TradingName { get; set; } /// ///Australian Business Number /// [ApiMember(DataType="string", Description="Australian Business Number", Name="Abn", ParameterType="query")] public virtual string Abn { get; set; } /// ///Australian Company Number /// [ApiMember(DataType="string", Description="Australian Company Number", Name="Acn", ParameterType="query")] public virtual string Acn { get; set; } /// ///Australian Registered Body Number /// [ApiMember(DataType="string", Description="Australian Registered Body Number", Name="Arbn", ParameterType="query")] public virtual string Arbn { get; set; } /// ///Indicates if the Contact is registered for GST. /// [ApiMember(DataType="bool", Description="Indicates if the Contact is registered for GST.", Name="GstRegistered", ParameterType="query")] public virtual bool GstRegistered { get; set; } /// ///True if english is a secondary language for the contact. /// [ApiMember(DataType="bool", Description="True if english is a secondary language for the contact.", Name="ESL", ParameterType="query")] public virtual bool ESL { get; set; } /// ///Language that is the primary language for the contact. /// [ApiMember(DataType="string", Description="Language that is the primary language for the contact.", Name="Language", ParameterType="query")] public virtual string Language { get; set; } /// ///True if an interpreter is required. /// [ApiMember(DataType="bool", Description="True if an interpreter is required.", Name="InterpreterRequired", ParameterType="query")] public virtual bool InterpreterRequired { get; set; } /// ///Licensee specific notes about the contact. /// [ApiMember(DataType="string", Description="Licensee specific notes about the contact.", Name="LicenseeNotes", ParameterType="query")] public virtual string LicenseeNotes { get; set; } /// ///Profile photo of contact linked to the profile /// [ApiMember(DataType="string", Description="Profile photo of contact linked to the profile", Name="ProfilePhotoUrl")] public virtual string ProfilePhotoUrl { get; set; } /// ///Thumbnail photo of contact linked to the profile /// [ApiMember(DataType="string", Description="Thumbnail photo of contact linked to the profile", Name="ProfilePhotoThumbnailUrl")] public virtual string ProfilePhotoThumbnailUrl { get; set; } /// ///Profile photo id of contact linked to the profile /// [ApiMember(DataType="Guid", Description="Profile photo id of contact linked to the profile", Name="ProfileImageId")] public virtual Guid ProfileImageId { get; set; } /// ///Profile description /// [ApiMember(DataType="string", Description="Profile description", Name="Description")] public virtual string Description { get; set; } /// ///Employment Industry /// [ApiMember(DataType="string", Description="Employment Industry", Name="EmploymentIndustry")] public virtual string EmploymentIndustry { get; set; } /// ///Employment Role /// [ApiMember(DataType="string", Description="Employment Role", Name="EmploymentRole")] public virtual string EmploymentRole { get; set; } /// ///Areas of Work /// [ApiMember(DataType="string", Description="Areas of Work", Name="EmploymentGeographicArea")] public virtual string EmploymentGeographicArea { get; set; } /// ///The contacts timezone. /// [ApiMember(DataType="Guid", Description="The contacts timezone.", Name="Timezone", ParameterType="query")] public virtual Guid Timezone { get; set; } /// ///Timezone Name /// [ApiMember(DataType="string", Description="Timezone Name", Name="TimezoneName", ParameterType="query")] public virtual string TimezoneName { get; set; } /// ///The primary address of the contact /// [ApiMember(DataType="string", Description="The primary address of the contact", Name="PrimaryAddress", ParameterType="query")] public virtual string PrimaryAddress { get; set; } /// ///Is this an active contact? Or an inactive contact (deleted account)? /// [ApiMember(DataType="bool", Description="Is this an active contact? Or an inactive contact (deleted account)?", Name="IsActiveContact")] public virtual bool IsActiveContact { get; set; } } public partial class ViewRoleModel : PagedModel { /// ///Role Id /// [ApiMember(DataType="Guid", Description="Role Id", IsRequired=true, Name="RoleId")] public virtual Guid RoleId { get; set; } /// ///Role Name /// [ApiMember(DataType="string", Description="Role Name", Name="RoleName")] public virtual string RoleName { get; set; } /// ///Role Connection Definition Id /// [ApiMember(DataType="Guid", Description="Role Connection Definition Id", Name="RoleConnectionDefinitionId")] public virtual Guid RoleConnectionDefinitionId { get; set; } /// ///Contact Types the Role applies to /// [ApiMember(DataType="List", Description="Contact Types the Role applies to", Name="ContactTypes")] public virtual List ContactTypes { get; set; } /// ///Does the role require contacts to accept it? /// [ApiMember(DataType="bool", Description="Does the role require contacts to accept it?", Name="RequireContactsToAccept")] public virtual bool RequireContactsToAccept { get; set; } public virtual bool IsPlatformRole { get; set; } public virtual bool CanAddContacts { get; set; } public virtual bool CanShareRole { get; set; } public virtual bool CanEditRole { get; set; } public virtual bool CanEditContactTypes { get; set; } public virtual List Contacts { get; set; } public virtual IList ShareDetails { get; set; } public virtual List ListItemFilters { get; set; } public virtual Guid ContactIdOwner { get; set; } public virtual int TotalItemCount { get; set; } } } namespace Eros.Subtle.Canvara.WebAPIModel.ServiceModel { /// ///Get details of the specified contact role, including details of the contacts and organisations sharing it /// [Route("/contactrole/{ContactRoleId}")] [Api(Description="Get details of the specified contact role, including details of the contacts and organisations sharing it")] public partial class GetContactRoleDetails : PagedModel, IReturn { /// ///The Contact Role Guid. Records retrieved will belong to this contact. /// [ApiMember(DataType="Guid", Description="The Contact Role Guid. Records retrieved will belong to this contact.", IsRequired=true, Name="ContactRoleId", ParameterType="query")] public virtual Guid ContactRoleId { get; set; } /// ///Text filter /// [ApiMember(DataType="string", Description="Text filter", Name="SearchText", ParameterType="query")] public virtual string SearchText { get; set; } } [ApiResponse(Description="Details of the specified contact role, including details of the contacts and organisations sharing it")] public partial class GetContactRoleDetailsResponse { public virtual ViewRoleModel ContactRole { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } } namespace ServiceStack { [DataContract] public partial class ResponseStatus : IMeta { [DataMember(Order=1)] public virtual string ErrorCode { get; set; } [DataMember(Order=2)] public virtual string Message { get; set; } [DataMember(Order=3)] public virtual string StackTrace { get; set; } [DataMember(Order=4)] public virtual List Errors { get; set; } [DataMember(Order=5)] public virtual Dictionary Meta { get; set; } } }