Class PersonSummary
Summary of person, with recent activities, chats, and requests included.
Carrier object for PersonSummary. Services for the PersonSummary Carrier is available from the Person Agent.Inherited Members
Namespace: SuperOffice.CRM.Services
Assembly: SuperOffice.Services.dll
Syntax
[DataContract(Namespace = "http://www.superoffice.net/ws/crm/NetServer/11.1.0.0")]
public class PersonSummary
Constructors
PersonSummary()
Default constructor
Declaration
public PersonSummary()
See Also
Properties
Chats
Recent chats with person
Declaration
[DataMember]
public virtual ChatSummaryItem[] Chats { get; set; }
Property Value
Type | Description |
---|---|
ChatSummaryItem[] |
See Also
Documents
Recent documents on person
Declaration
[DataMember]
public virtual ActivitySummaryItem[] Documents { get; set; }
Property Value
Type | Description |
---|---|
ActivitySummaryItem[] |
See Also
Followups
Recent follow-ups on person
Declaration
[DataMember]
public virtual ActivitySummaryItem[] Followups { get; set; }
Property Value
Type | Description |
---|---|
ActivitySummaryItem[] |
See Also
Person
Simple Person data.
Declaration
[DataMember]
public virtual Person Person { get; set; }
Property Value
Type | Description |
---|---|
Person |
See Also
Sales
Recent sales on person
Declaration
[DataMember]
public virtual SaleSummaryItem[] Sales { get; set; }
Property Value
Type | Description |
---|---|
SaleSummaryItem[] |
See Also
Tickets
Recent tickets on person
Declaration
[DataMember]
public virtual TicketSummaryItem[] Tickets { get; set; }
Property Value
Type | Description |
---|---|
TicketSummaryItem[] |
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. |