/* Options: Date: 2025-05-04 22:50:15 Version: 8.71 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://team.evovoice.io //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: GetMyContacts.* //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 Voice.Api.App; namespace Voice.Api.App { public partial class AppContact { public virtual string DisplayName { get; set; } public virtual string Address { get; set; } public virtual AppContactTypes Type { get; set; } public virtual string CustomerName { get; set; } public virtual bool CanCall { get; set; } public virtual bool CanChat { get; set; } } public enum AppContactTypes { User, Team, Contact, } /// ///Gets the contacts associated with the authenticated user /// [Route("/app/contacts", "GET")] [Api(Description="Gets the contacts associated with the authenticated user")] public partial class GetMyContacts : IReturn { } public partial class GetMyContactsResponse { public virtual List Contacts { get; set; } } }