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

# <a id="SuperOffice_WebApi_Data_MassOperationResult" /> Class MassOperationResult

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

Carrier object for MassOperationResult.
Information about the results of a mass-update operation

```csharp theme={null}
public class MassOperationResult : Carrier
```

#### Inheritance

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

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[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_MassOperationResult__ctor" /> MassOperationResult()

Default constructor - defaults any enum props to 0.

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

## Properties

### <a id="SuperOffice_WebApi_Data_MassOperationResult_Deletes" /> Deletes

Number of rows deleted / zeroed

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_MassOperationResult_Inserts" /> Inserts

Number of rows inserted

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_MassOperationResult_Message" /> Message

Any message from the method, including timing data

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

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_MassOperationResult_RowStatus" /> RowStatus

Array of statuses and primary keys for all rows that were specified. Populated if the 'ReturnRowStatus' parameter of 'Upsert' is set, otherwise null

```csharp theme={null}
public virtual UpsertRowStatus[] RowStatus { get; set; }
```

#### Property Value

[UpsertRowStatus](SuperOffice.WebApi.Data.UpsertRowStatus.md)\[]

### <a id="SuperOffice_WebApi_Data_MassOperationResult_Success" /> Success

Did the operation succeed

```csharp theme={null}
public virtual bool Success { get; set; }
```

#### Property Value

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

### <a id="SuperOffice_WebApi_Data_MassOperationResult_Updates" /> Updates

Number of rows updated

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

#### Property Value

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

## See Also

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


## Related topics

- [SuperOffice.WebApi.Agents.DatabaseTableAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.DatabaseTableAgent.md)
- [SuperOffice.WebApi.Agents.IDatabaseTableAgent](/en/api/reference/webapi/SuperOffice.WebApi.Agents.IDatabaseTableAgent.md)
- [SuperOffice.WebApi.Data.UpsertRowStatus](/en/api/reference/webapi/SuperOffice.WebApi.Data.UpsertRowStatus.md)
- [SuperOffice.WebApi.Data.OperationResult](/en/api/reference/webapi/SuperOffice.WebApi.Data.OperationResult.md)
- [SuperOffice.WebApi.Data.FindResults](/en/api/reference/webapi/SuperOffice.WebApi.Data.FindResults.md)
- [SuperOffice.WebApi.Data.TicketRelationResult](/en/api/reference/webapi/SuperOffice.WebApi.Data.TicketRelationResult.md)
