Nduv
qiskit.providers.models.Nduv(date, name, unit, value)
Bases: object
(opens in a new tab)
Class representing name-date-unit-value
date
date.
name
name.
unit
unit.
value
value.
Initialize a new name-date-unit-value object
Parameters
- date (datetime.datetime (opens in a new tab)) – Date field
- name (str (opens in a new tab)) – Name field
- unit (str (opens in a new tab)) – Nduv unit
- value (float (opens in a new tab)) – The value of the Nduv
Methods
from_dict
classmethod from_dict(data)
Create a new Nduv object from a dictionary.
Parameters
data (dict (opens in a new tab)) – A dictionary representing the Nduv to create. It will be in the same format as output by to_dict()
.
Returns
The Nduv from the input dictionary.
Return type
to_dict
to_dict()
Return a dictionary format representation of the object.
Returns
The dictionary form of the Nduv.
Return type
Was this page helpful?