# BackgroundProcess

Represents details of the Background Process

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creationDate** | **string** | When this process was created. Stored as Organization Time | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**endDate** | **string** | When this process was ended. Stored as Organization Time | [optional] [readonly] [default to undefined]
**startDate** | **string** | When this process was started. Stored as Organization Time | [optional] [readonly] [default to undefined]
**state** | **string** | Represents the execution status of a background process | [optional] [default to undefined]
**type** | **string** | Represents type of the Background Process | [optional] [default to undefined]

## Example

```typescript
import { BackgroundProcess } from './api';

const instance: BackgroundProcess = {
    creationDate,
    encodedKey,
    endDate,
    startDate,
    state,
    type,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
