fermioniq.emulator_message.EmulatorMessage.model_fields#

EmulatorMessage.model_fields: ClassVar[dict[str, FieldInfo]] = {'error_message': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'event_type': FieldInfo(annotation=Literal['STARTED', 'FINISHED'], required=True), 'job_id': FieldInfo(annotation=str, required=True), 'job_status_code': FieldInfo(annotation=int, required=True)}#

Metadata about the fields defined on the model, mapping of field names to [FieldInfo][pydantic.fields.FieldInfo].

This replaces Model.__fields__ from Pydantic V1.