---
title: GateProperties (v1.4)
description: API reference for qiskit.providers.models.GateProperties in qiskit v1.4
source: https://eu-de.quantum.cloud.ibm.com/docs/en/api/qiskit/1.4/qiskit.providers.models.GateProperties
---

# GateProperties

*class* `qiskit.providers.models.GateProperties(qubits, gate, parameters, **kwargs)`

[GitHub](https://github.com/Qiskit/qiskit/tree/stable/1.4/qiskit/providers/models/backendproperties.py#L98-L177)

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

Class representing a gate’s properties

### qubits

qubits.

### gate

gate.

### parameters

parameters.

Initialize a new [`GateProperties`](#qiskit.providers.models.GateProperties "qiskit.providers.models.GateProperties") object

> **Deprecated since version 1.4**
>
> The class `qiskit.providers.models.backendproperties.GateProperties` is deprecated as of qiskit 1.4. It will be removed in the 2.0 release. The models in `qiskit.providers.models` and related objects are part of the deprecated BackendV1 workflow, and no longer necessary for BackendV2. If a user workflow requires these representations it likely relies on deprecated functionality and should be updated to use BackendV2.

**Parameters**

- **qubits** ([*list*](https://docs.python.org/3/library/stdtypes.html#list)) – A list of integers representing qubits
- **gate** ([*str*](https://docs.python.org/3/library/stdtypes.html#str)) – The gates name
- **parameters** ([*list*](https://docs.python.org/3/library/stdtypes.html#list)) – List of [`Nduv`](/docs/api/qiskit/1.4/qiskit.providers.models.Nduv "qiskit.providers.models.Nduv") objects for the name-date-unit-value for the gate
- **kwargs** – Optional additional fields

## Methods

### from\_dict

*classmethod* `from_dict(data)`

[GitHub](https://github.com/Qiskit/qiskit/tree/stable/1.4/qiskit/providers/models/backendproperties.py#L140-L158)

Create a new Gate object from a dictionary.

**Parameters**

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

**Returns**

The Nduv from the input dictionary.

**Return type**

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

### to\_dict

`to_dict()`

[GitHub](https://github.com/Qiskit/qiskit/tree/stable/1.4/qiskit/providers/models/backendproperties.py#L160-L171)

Return a dictionary format representation of the BackendStatus.

**Returns**

The dictionary form of the Gate.

**Return type**

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