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 Pocket Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.2.0.0")]
public class CallerID
Constructors
CallerID()
Default constructor
Declaration
public CallerID()
See Also
Properties
ContactId
Primary key
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ContactName
Contact name
Declaration
[DataMember]
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
[DataMember]
public virtual short DialInPrefix { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
Mrmrs
e.g. Mrs sex_title
Declaration
[DataMember]
public virtual string Mrmrs { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
Primary key
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
PersonName
Full name of the person
Declaration
[DataMember]
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
[DataMember]
public virtual long PhoneNumber { get; set; }
Property Value
Type | Description |
---|---|
long |
See Also
Methods
ToString()
Returns the carrier contents as a formatted string.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | The carrier contents. |
Overrides
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. |