---
title: JobStatus (v0.46)
description: API reference for qiskit.providers.models.JobStatus in qiskit v0.46
source: https://eu-de.quantum.cloud.ibm.com/docs/en/api/qiskit/0.46/qiskit.providers.models.JobStatus
---

# JobStatus

*class* `qiskit.providers.models.JobStatus(job_id, status, status_msg, **kwargs)`

[GitHub](https://github.com/qiskit/qiskit/tree/stable/0.46/qiskit/providers/models/jobstatus.py)

Bases: [`object`](https://docs.python.org/3/library/functions.html#object)

Model for JobStatus.

### job\_id

backend job\_id.

**Type**

[str](https://docs.python.org/3/library/stdtypes.html#str)

### status

status of the job.

**Type**

[str](https://docs.python.org/3/library/stdtypes.html#str)

### status\_msg

status message.

**Type**

[str](https://docs.python.org/3/library/stdtypes.html#str)

## Methods

### from\_dict

*classmethod* `from_dict(data)`

Create a new JobStatus object from a dictionary.

**Parameters**

**data** ([*dict*](https://docs.python.org/3/library/stdtypes.html#dict)) – A dictionary representing the JobStatus to create. It will be in the same format as output by [`to_dict()`](#qiskit.providers.models.JobStatus.to_dict "qiskit.providers.models.JobStatus.to_dict").

**Returns**

The `JobStatus` from the input dictionary.

**Return type**

[JobStatus](#qiskit.providers.models.JobStatus "qiskit.providers.models.JobStatus")

### to\_dict

`to_dict()`

Return a dictionary format representation of the JobStatus.

**Returns**

The dictionary form of the JobStatus.

**Return type**

[dict](https://docs.python.org/3/library/stdtypes.html#dict)
