Interface IContactInfo
The system entity for a Contact Info, always a child of a IObjectEntity (by extending object entity IsTypeExtender)
See https://web.lemonedge.com/help/contact-info-view/ for more information
Inherited Members
System.IEquatable<LemonEdge.API.Core.IBaseEntity>.Equals(LemonEdge.API.Core.IBaseEntity)
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
System.ComponentModel.INotifyPropertyChanging.PropertyChanging
Namespace: LemonEdge.API.Entities
Assembly: API.dll
Syntax
[EntityDefinition(EntityID.ContactInfo, "dbo.LT_ContactInfo", "ContactInfo", IsStandingDataEntity = false)]
[DefaultEntityIcon(ImageType.ContactInfo)]
public interface IContactInfo : IBaseEntity, IEquatable<IBaseEntity>, INotifyPropertyChanged, INotifyPropertyChanging, ICloneableAsync, ICanTrackProperties
Properties
Address
A multiline address for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)2500, true)]
string Address { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DirectLine
A direct line number for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)20, true)]
string DirectLine { get; set; }
Property Value
Type | Description |
---|---|
System.String |
An email address for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, true)]
string Email { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Fax
A fax number for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)20, true)]
string Fax { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Mobile
A mobile number for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)20, true)]
string Mobile { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Notes
Multiline notes for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, true)]
string Notes { get; set; }
Property Value
Type | Description |
---|---|
System.String |
OwningEntityID
[Key] Links to IObjectEntity. The parent object entity this record holds contact information for
Declaration
[EntityProperty(SQLType.UniqueIdentifier, false)]
[EntityRelationship(EntityID.ObjectEntity, "ID", SingleJoinType.One, "IObjectEntity", "Owning Entity", DeleteWithRelationship = true, PartOfParentSet = true, LinkToItemInSet = false, InheritPermissions = true, IsTypeExtender = true)]
[EntityDescription("The owning entity this has contact information for.")]
Guid OwningEntityID { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
A twitter handle for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, true)]
string Twitter { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Website
A website url for the OwningEntityID
Declaration
[EntityProperty(SQLType.NVarChar, (short)500, true)]
string Website { get; set; }
Property Value
Type | Description |
---|---|
System.String |