> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.SaleSummaryItem

# <a id="SuperOffice_WebApi_Data_SaleSummaryItem" /> Class SaleSummaryItem

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for SaleSummaryItem.
Sale Summary item

```csharp theme={null}
public class SaleSummaryItem
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[SaleSummaryItem](SuperOffice.WebApi.Data.SaleSummaryItem.md)

#### Inherited Members

[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem__ctor" /> SaleSummaryItem()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public SaleSummaryItem()
```

## Properties

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Amount" /> Amount

Total sale amount

```csharp theme={null}
public virtual double Amount { get; set; }
```

#### Property Value

[double](https://learn.microsoft.com/dotnet/api/system.double)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_AmountInBaseCurrency" /> AmountInBaseCurrency

Sale amount converted to the base currency.

```csharp theme={null}
public virtual double AmountInBaseCurrency { get; set; }
```

#### Property Value

[double](https://learn.microsoft.com/dotnet/api/system.double)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Completed" /> Completed

The Completed state. NotStarted(1) or Completed(3)
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public ActivityStatus? Completed { get; set; }
```

#### Property Value

[ActivityStatus](SuperOffice.WebApi.Data.ActivityStatus.md)?

#### See Also

[SaleSummaryItem](SuperOffice.WebApi.Data.SaleSummaryItem.md).[Completed\_String](SuperOffice.WebApi.Data.SaleSummaryItem.md#SuperOffice_WebApi_Data_SaleSummaryItem_Completed_String)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Completed_String" /> Completed\_String

The Completed state. NotStarted(1) or Completed(3)
Raw string enum value.

```csharp theme={null}
[JsonProperty("Completed")]
public string Completed_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[SaleSummaryItem](SuperOffice.WebApi.Data.SaleSummaryItem.md).[Completed](SuperOffice.WebApi.Data.SaleSummaryItem.md#SuperOffice_WebApi_Data_SaleSummaryItem_Completed)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Currency" /> Currency

Currency the sale amount is in.

```csharp theme={null}
public virtual string Currency { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Heading" /> Heading

Sale heading (short description?)

```csharp theme={null}
public virtual string Heading { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Probability" /> Probability

Probability of sale succeess in percent (0-100)

```csharp theme={null}
public virtual short Probability { get; set; }
```

#### Property Value

[short](https://learn.microsoft.com/dotnet/api/system.int16)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Registered" /> Registered

Registered date

```csharp theme={null}
public virtual DateTime Registered { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_SaleDate" /> SaleDate

Expected sales date

```csharp theme={null}
public virtual DateTime SaleDate { get; set; }
```

#### Property Value

[DateTime](https://learn.microsoft.com/dotnet/api/system.datetime)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_SaleId" /> SaleId

Primary key

```csharp theme={null}
public virtual int SaleId { get; set; }
```

#### Property Value

[int](https://learn.microsoft.com/dotnet/api/system.int32)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Status" /> Status

The sale's status, indicating whether the sale is open(1), sold(2) or lost(3).
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public SaleStatus? Status { get; set; }
```

#### Property Value

[SaleStatus](SuperOffice.WebApi.Data.SaleStatus.md)?

#### See Also

[SaleSummaryItem](SuperOffice.WebApi.Data.SaleSummaryItem.md).[Status\_String](SuperOffice.WebApi.Data.SaleSummaryItem.md#SuperOffice_WebApi_Data_SaleSummaryItem_Status_String)

### <a id="SuperOffice_WebApi_Data_SaleSummaryItem_Status_String" /> Status\_String

The sale's status, indicating whether the sale is open(1), sold(2) or lost(3).
Raw string enum value.

```csharp theme={null}
[JsonProperty("Status")]
public string Status_String { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

#### See Also

[SaleSummaryItem](SuperOffice.WebApi.Data.SaleSummaryItem.md).[Status](SuperOffice.WebApi.Data.SaleSummaryItem.md#SuperOffice_WebApi_Data_SaleSummaryItem_Status)

## See Also

[SaleAgent](SuperOffice.WebApi.Agents.SaleAgent.md)


## Related topics

- [SuperOffice.WebApi.Data.ContactSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.ContactSummary.md)
- [SuperOffice.WebApi.Data.PersonSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.PersonSummary.md)
- [SuperOffice.WebApi.Data.SaleSummary](/en/api/reference/webapi/SuperOffice.WebApi.Data.SaleSummary.md)
- [SuperOffice.WebApi.Data.TicketSummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.TicketSummaryItem.md)
- [SuperOffice.WebApi.Data.ActivitySummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.ActivitySummaryItem.md)
- [SuperOffice.WebApi.Data.SelectionSummaryItem](/en/api/reference/webapi/SuperOffice.WebApi.Data.SelectionSummaryItem.md)
