Class ContactActivity
Carrier object for ContactActivity. Services for the ContactActivity Carrier is available from the Contact Agent.
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class ContactActivity : Carrier
Constructors
ContactActivity()
Default constructor
Declaration
public ContactActivity()
See Also
Properties
Action
The activity that has occured on this contact.
Declaration
[DataMember]
public virtual ContactAction Action { get; set; }
Property Value
Type | Description |
---|---|
ContactAction |
See Also
ActionId
Id of the last element an activity was found on. I.e. AppointmentId, ContactId, or PersonId
Declaration
[DataMember]
public virtual int ActionId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ActionTime
The time of the activity. If more than one activity has occured on the contact, the last activity time is shown.
Declaration
[DataMember]
public virtual DateTime ActionTime { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
ActivityPersonId
Id of the person causing the activity.
Declaration
[DataMember]
public virtual int ActivityPersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
ActivityPersonName
The person that carried out the activity on the contact.
Declaration
[DataMember]
public virtual string ActivityPersonName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
AssociateFullName
The contact's owner
Declaration
[DataMember]
public virtual string AssociateFullName { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
AssociateId
Our contact
Declaration
[DataMember]
public virtual int AssociateId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Category
The contact category.
Declaration
[DataMember]
public virtual string Category { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
ContactId
Primary key
Declaration
[DataMember]
public virtual int ContactId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Department
Department
Declaration
[DataMember]
public virtual string Department { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Name
Contact name
Declaration
[DataMember]
public virtual string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
OrgNr
VAT number or similar
Declaration
[DataMember]
public virtual string OrgNr { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
PersonId
The person id
Declaration
[DataMember]
public virtual int PersonId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
URL
URL address
Declaration
[DataMember]
public virtual string URL { get; set; }
Property Value
Type | Description |
---|---|
string |
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. |