Class CallerID
Describes a caller ID for Mobile to lookup phone calls. Can be for a person, or for a company, in which case the personId field will be 0
Carrier object for CallerID. Services for the CallerID Carrier is available from the IPocketAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class CallerID : Object
Constructors
CallerID()
Default constructor
Declaration
public CallerID()
See Also
Properties
ContactId
Primary key
Declaration
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
ContactName
Contact name
Declaration
public virtual string ContactName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
DialInPrefix
Prefix for dialing into the country from outside (country code), empty if PhoneNumber already contains the country code
Declaration
public virtual short DialInPrefix { get; set; }
Property Value
Type | Description |
---|---|
Int16 |
See Also
Mrmrs
e.g. Mrs sex_title
Declaration
public virtual string Mrmrs { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
PersonId
Primary key
Declaration
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
PersonName
Full name of the person
Declaration
public virtual string PersonName { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
PhoneNumber
Phone number, as a long instead of a string, to avoid parsing all the phonenumbers in Mobile CRM
Declaration
public virtual long PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
Int64 |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
String | The carrier contents. |
See Also
ToString(String)
Returns the carrier contents as a formatted string, useful for debugging. Each line in the output is prefixed with the input value.
Declaration
public string ToString(string prefix)
Parameters
Type | Name | Description |
---|---|---|
String | prefix | The line prefix (typically used for indenting) |
Returns
Type | Description |
---|---|
String | The carrier contents. |