iblrig.pydantic_definitions.HardwareSettingsSound

Inheritance diagram of HardwareSettingsSound

class iblrig.pydantic_definitions.HardwareSettingsSound[source]
AMP_TYPE: Literal['harp', 'AMP2X15'] | None
COM_SOUND: str | None
OUTPUT: Literal['harp', 'xonar', 'hifi', 'sysdefault']
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]] = {'AMP_TYPE': FieldInfo(annotation=Union[Literal['harp', 'AMP2X15'], NoneType], required=False, default=None), 'COM_SOUND': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'OUTPUT': FieldInfo(annotation=Literal['harp', 'xonar', 'hifi', 'sysdefault'], required=True)}

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.