@@ -166,6 +166,7 @@ def _sympify(cls, v):
166166
167167 return sympify_petab (v )
168168
169+ #: :meta private:
169170 model_config = ConfigDict (
170171 arbitrary_types_allowed = True , populate_by_name = True
171172 )
@@ -258,6 +259,7 @@ class Change(BaseModel):
258259 #: The value to set the target entity to
259260 target_value : sp .Basic | None = Field (alias = C .TARGET_VALUE , default = None )
260261
262+ #: :meta private:
261263 model_config = ConfigDict (
262264 arbitrary_types_allowed = True ,
263265 populate_by_name = True ,
@@ -314,6 +316,7 @@ class ChangeSet(BaseModel):
314316 #: The changes associated with this condition
315317 changes : list [Change ]
316318
319+ #: :meta private:
317320 model_config = ConfigDict (populate_by_name = True )
318321
319322 @field_validator ("id" )
@@ -411,6 +414,7 @@ class ExperimentPeriod(BaseModel):
411414 #: The ID of the condition to be applied at the start time
412415 condition_id : str = Field (alias = C .CONDITION_ID )
413416
417+ #: :meta private:
414418 model_config = ConfigDict (populate_by_name = True )
415419
416420 @field_validator ("condition_id" )
@@ -436,6 +440,7 @@ class Experiment(BaseModel):
436440 #: The periods of the experiment
437441 periods : list [ExperimentPeriod ] = []
438442
443+ #: :meta private:
439444 model_config = ConfigDict (
440445 arbitrary_types_allowed = True , populate_by_name = True
441446 )
@@ -534,6 +539,7 @@ class Measurement(BaseModel):
534539 alias = C .NOISE_PARAMETERS , default_factory = list
535540 )
536541
542+ #: :meta private:
537543 model_config = ConfigDict (
538544 arbitrary_types_allowed = True , populate_by_name = True
539545 )
@@ -635,6 +641,7 @@ class Mapping(BaseModel):
635641 #: Model entity ID
636642 model_id : str = Field (alias = C .MODEL_ENTITY_ID )
637643
644+ #: :meta private:
638645 model_config = ConfigDict (populate_by_name = True )
639646
640647 @field_validator (
@@ -715,6 +722,7 @@ class Parameter(BaseModel):
715722 estimate : bool = Field (alias = C .ESTIMATE , default = True )
716723 # TODO priors
717724
725+ #: :meta private:
718726 model_config = ConfigDict (
719727 arbitrary_types_allowed = True ,
720728 populate_by_name = True ,
0 commit comments