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

# GateProperties

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

[GitHub](https://github.com/Qiskit/qiskit/tree/stable/1.3/qiskit/providers/models/backendproperties.py#L89-L159)

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

**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.3/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.3/qiskit/providers/models/backendproperties.py#L122-L140)

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.3/qiskit/providers/models/backendproperties.py#L142-L153)

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)
