iqm.iqm_client.models.SingleQubitMapping#
- class iqm.iqm_client.models.SingleQubitMapping(*, logical_name: str, physical_name: str)#
Bases:
BaseModel
Mapping of a logical qubit name to a physical qubit name.
Attributes
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo] objects.
logical qubit name
physical qubit name
Methods
- model_computed_fields: ClassVar[Dict[str, ComputedFieldInfo]] = {}#
A dictionary of computed field names and their corresponding ComputedFieldInfo objects.
- model_config: ClassVar[ConfigDict] = {}#
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[Dict[str, FieldInfo]] = {'logical_name': FieldInfo(annotation=str, required=True, examples=['alice']), 'physical_name': FieldInfo(annotation=str, required=True, examples=['QB1'])}#
Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo] objects.
This replaces Model.__fields__ from Pydantic V1.