Class SaleSummaryItem
Sale Summary item
Carrier object for SaleSummaryItem. Services for the SaleSummaryItem Carrier is available from the Sale 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 SaleSummaryItem
Constructors
SaleSummaryItem()
Default constructor
Declaration
public SaleSummaryItem()
See Also
Properties
Amount
Total sale amount
Declaration
[DataMember]
public virtual double Amount { get; set; }
Property Value
Type | Description |
---|---|
double |
See Also
AmountInBaseCurrency
Sale amount converted to the base currency.
Declaration
[DataMember]
public virtual double AmountInBaseCurrency { get; set; }
Property Value
Type | Description |
---|---|
double |
See Also
Completed
The Completed state. NotStarted(1) or Completed(3)
Declaration
[DataMember]
public virtual ActivityStatus Completed { get; set; }
Property Value
Type | Description |
---|---|
ActivityStatus |
See Also
Currency
Currency the sale amount is in.
Declaration
[DataMember]
public virtual string Currency { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Heading
Sale heading (short description?)
Declaration
[DataMember]
public virtual string Heading { get; set; }
Property Value
Type | Description |
---|---|
string |
See Also
Probability
Probability of sale succeess in percent (0-100)
Declaration
[DataMember]
public virtual short Probability { get; set; }
Property Value
Type | Description |
---|---|
short |
See Also
Registered
Registered date in UTC.
Declaration
[DataMember]
public virtual DateTime Registered { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
SaleDate
Expected sales date
Declaration
[DataMember]
public virtual DateTime SaleDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime |
See Also
SaleId
Primary key
Declaration
[DataMember]
public virtual int SaleId { get; set; }
Property Value
Type | Description |
---|---|
int |
See Also
Status
The sale's status, indicating whether the sale is open(1), sold(2) or lost(3).
Declaration
[DataMember]
public virtual SaleStatus Status { get; set; }
Property Value
Type | Description |
---|---|
SaleStatus |
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. |