> ## 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.WorkflowStepCreateSale

# <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale" /> Class WorkflowStepCreateSale

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

Carrier object for WorkflowStepCreateSale.
Step in workflow.

```csharp theme={null}
public class WorkflowStepCreateSale : WorkflowStepBase
```

#### Inheritance

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

#### Inherited Members

[WorkflowStepBase.WorkflowStepId](SuperOffice.WebApi.Data.WorkflowStepBase.md#SuperOffice_WebApi_Data_WorkflowStepBase_WorkflowStepId),
[WorkflowStepBase.WorkflowId](SuperOffice.WebApi.Data.WorkflowStepBase.md#SuperOffice_WebApi_Data_WorkflowStepBase_WorkflowId),
[WorkflowStepBase.StepType\_String](SuperOffice.WebApi.Data.WorkflowStepBase.md#SuperOffice_WebApi_Data_WorkflowStepBase_StepType_String),
[WorkflowStepBase.StepType](SuperOffice.WebApi.Data.WorkflowStepBase.md#SuperOffice_WebApi_Data_WorkflowStepBase_StepType),
[WorkflowStepBase.Rank](SuperOffice.WebApi.Data.WorkflowStepBase.md#SuperOffice_WebApi_Data_WorkflowStepBase_Rank),
[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_WorkflowStepCreateSale__ctor" /> WorkflowStepCreateSale()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionTime" /> ActionTime

Workflow action time to wait

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionTimeUnit" /> ActionTimeUnit

Worflow action time unit
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public WorkflowTimeWaitIntervalType? ActionTimeUnit { get; set; }
```

#### Property Value

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

#### See Also

[WorkflowStepCreateSale](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md).[ActionTimeUnit\_String](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md#SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionTimeUnit_String)

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionTimeUnit_String" /> ActionTimeUnit\_String

Worflow action time unit
Raw string enum value.

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

#### Property Value

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

#### See Also

[WorkflowStepCreateSale](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md).[ActionTimeUnit](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md#SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionTimeUnit)

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionType" /> ActionType

Workflow action type
NULL if unknown enum value.

```csharp theme={null}
[JsonIgnore]
public WorkflowActionType? ActionType { get; set; }
```

#### Property Value

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

#### See Also

[WorkflowStepCreateSale](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md).[ActionType\_String](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md#SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionType_String)

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionType_String" /> ActionType\_String

Workflow action type
Raw string enum value.

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

#### Property Value

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

#### See Also

[WorkflowStepCreateSale](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md).[ActionType](SuperOffice.WebApi.Data.WorkflowStepCreateSale.md#SuperOffice_WebApi_Data_WorkflowStepCreateSale_ActionType)

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

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_WorkflowStepCreateSale_Currency" /> Currency

Sale currency

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Date" /> Date

Sale date

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Description" /> Description

Sale description

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Owner" /> Owner

Sale owner

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Project" /> Project

Related project

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_SaleType" /> SaleType

Sale type

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Source" /> Source

Source

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Stage" /> Stage

Sale stage

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_WorkflowStepCreateSale_Title" /> Title

Sale title

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Data.WorkflowStepBase](/en/api/reference/webapi/SuperOffice.WebApi.Data.WorkflowStepBase.md)
- [SuperOffice.WebApi.Data](/en/api/reference/webapi/SuperOffice.WebApi.Data.md)
- [SuperOffice.WebApi.Data.WorkflowStepType](/en/api/reference/webapi/SuperOffice.WebApi.Data.WorkflowStepType.md)
- [SuperOffice.WebApi.Data.WorkflowStepCreateRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.WorkflowStepCreateRequest.md)
- [SuperOffice.WebApi.Data.WorkflowStepCreateFollowUp](/en/api/reference/webapi/SuperOffice.WebApi.Data.WorkflowStepCreateFollowUp.md)
- [SuperOffice.WebApi.Data.Workflow CreateDefaultWorkflowStepFromTypeRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Workflow_CreateDefaultWorkflowStepFromTypeRequest.md)
