Class ActivitySummaryItem
Summary details about appointments and documents.
Carrier object for ActivitySummaryItem. Services for the ActivitySummaryItem Carrier is available from the IAppointmentAgent.Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
public class ActivitySummaryItem : Object
Constructors
ActivitySummaryItem()
Default constructor
Declaration
public ActivitySummaryItem()
See Also
Properties
AppointmentId
Primary key
Declaration
public virtual int AppointmentId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Completed
The Completed state. NotStarted(1) or Completed(3)
Declaration
public virtual ActivityStatus Completed { get; set; }
Property Value
Type | Description |
---|---|
ActivityStatus |
See Also
Date
Start/Document date
Declaration
public virtual DateTime Date { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
Description
The appointment's textbox; document title
Declaration
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
String |
See Also
DocumentId
Document id - 0 if not a document
Declaration
public virtual int DocumentId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
See Also
Registered
Registered date in UTC.
Declaration
public virtual DateTime Registered { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
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. |