optimize_state_response_all_of module#

class edgeimpulse_api.models.optimize_state_response_all_of.OptimizeStateResponseAllOf(
*,
config: OptimizeConfig,
status: OptimizeStateResponseAllOfStatus,
tunerJobId: StrictInt | None = None,
tunerCoordinatorJobId: StrictInt | None = None,
tunerJobIsRunning: StrictBool,
trials: List[TunerTrial],
projectDataType: StrictStr,
jobError: StrictStr | None = None,
workers: List[OptimizeStateResponseAllOfWorkers],
nextRunIndex: StrictInt,
)[source]#

Bases: BaseModel

class Config[source]#

Bases: object

allow_population_by_field_name = True#
validate_assignment = False#
config: OptimizeConfig#
classmethod from_dict(
obj: dict,
) OptimizeStateResponseAllOf[source]#

Create an instance of OptimizeStateResponseAllOf from a dict

classmethod from_json(
json_str: str,
) OptimizeStateResponseAllOf[source]#

Create an instance of OptimizeStateResponseAllOf from a JSON string

job_error: StrictStr | None#
next_run_index: StrictInt#
project_data_type: StrictStr#
classmethod project_data_type_validate_enum(v)[source]#
status: OptimizeStateResponseAllOfStatus#
to_dict()[source]#

Returns the dictionary representation of the model using alias

to_json() str[source]#

Returns the JSON representation of the model using alias

to_str() str[source]#

Returns the string representation of the model using alias

trials: List[TunerTrial]#
tuner_coordinator_job_id: StrictInt | None#
tuner_job_id: StrictInt | None#
tuner_job_is_running: StrictBool#
workers: List[OptimizeStateResponseAllOfWorkers]#