# ProcessV3


## Fields

| Field                                                                                                            | Type                                                                                                             | Required                                                                                                         | Description                                                                                                      | Example                                                                                                          |
| ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------- |
| `AdditionalExposedPorts`                                                                                         | List<[ExposedPort](../../Models/Shared/ExposedPort.md)>                                                          | :heavy_check_mark:                                                                                               | N/A                                                                                                              | [<br/>{<br/>"host": "1.proxy.hathora.dev",<br/>"name": "debug",<br/>"port": 72941,<br/>"transportType": "tcp"<br/>}<br/>] |
| `AppId`                                                                                                          | *string*                                                                                                         | :heavy_check_mark:                                                                                               | System generated unique identifier for an application.                                                           | app-af469a92-5b45-4565-b3c4-b79878de67d2                                                                         |
| `CreatedAt`                                                                                                      | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0)                            | :heavy_check_mark:                                                                                               | When the process started being provisioned.                                                                      |                                                                                                                  |
| `DeploymentId`                                                                                                   | *string*                                                                                                         | :heavy_check_mark:                                                                                               | System generated id for a deployment.                                                                            | dep-6d4c6a71-2d75-4b42-94e1-f312f57f33c5                                                                         |
| `ExposedPort`                                                                                                    | [ProcessV3ExposedPort](../../Models/Shared/ProcessV3ExposedPort.md)                                              | :heavy_check_mark:                                                                                               | N/A                                                                                                              | {<br/>"host": "1.proxy.hathora.dev",<br/>"name": "default",<br/>"port": 34567,<br/>"transportType": "tcp"<br/>}  |
| `ProcessId`                                                                                                      | *string*                                                                                                         | :heavy_check_mark:                                                                                               | System generated unique identifier to a runtime instance of your game server.                                    | cbfcddd2-0006-43ae-996c-995fff7bed2e                                                                             |
| `Region`                                                                                                         | [Region](../../Models/Shared/Region.md)                                                                          | :heavy_check_mark:                                                                                               | N/A                                                                                                              |                                                                                                                  |
| `RoomsAllocated`                                                                                                 | *int*                                                                                                            | :heavy_check_mark:                                                                                               | Tracks the number of rooms that have been allocated to the process.                                              | 1                                                                                                                |
| `RoomsPerProcess`                                                                                                | *int*                                                                                                            | :heavy_check_mark:                                                                                               | Governs how many [rooms](https://hathora.dev/docs/concepts/hathora-entities#room) can be scheduled in a process. | 3                                                                                                                |
| `StartedAt`                                                                                                      | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0)                            | :heavy_check_mark:                                                                                               | When the process bound to the specified port. We use this to determine when we should start billing.             |                                                                                                                  |
| `Status`                                                                                                         | [ProcessStatus](../../Models/Shared/ProcessStatus.md)                                                            | :heavy_check_mark:                                                                                               | N/A                                                                                                              |                                                                                                                  |
| `StoppingAt`                                                                                                     | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0)                            | :heavy_check_mark:                                                                                               | When the process is issued to stop. We use this to determine when we should stop billing.                        |                                                                                                                  |
| `TerminatedAt`                                                                                                   | [DateTime](https://learn.microsoft.com/en-us/dotnet/api/system.datetime?view=net-5.0)                            | :heavy_check_mark:                                                                                               | When the process has been terminated.                                                                            |                                                                                                                  |