ProgressInfo#

Module: iqm.iqm_server_client.models

class iqm.iqm_server_client.models.ProgressInfo(*, value: int, max_value: int)#

Bases: PydanticBase

Progress information about completing an arbitrary task.

Used e.g. for tracking job completion.

Attributes

model_config

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

value

Current progress indicator value.

max_value

When we hit this, the task is done.

Methods

Parameters:
value: int#

Current progress indicator value.

max_value: int#

When we hit this, the task is done.

model_config: ClassVar[ConfigDict] = {'extra': 'ignore', 'ser_json_inf_nan': 'constants', 'validate_assignment': True, 'validate_default': True}#

Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].

Inheritance

Inheritance diagram of iqm.iqm_server_client.models.ProgressInfo