kittycad.models.async_api_call_output

Classes

OptionFileCenterOfMass(**data)

File center of mass.

OptionFileConversion(**data)

A file conversion.

OptionFileDensity(**data)

A file density.

OptionFileMass(**data)

A file mass.

OptionFileSurfaceArea(**data)

A file surface area.

OptionFileVolume(**data)

A file volume.

OptionTextToCad(**data)

Text to CAD.

OptionTextToCadIteration(**data)

Text to CAD iteration.

class kittycad.models.async_api_call_output.OptionFileCenterOfMass(**data)[source][source]

File center of mass.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'center_of_mass': typing.Optional[kittycad.models.point3d.Point3d], 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitLength'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_center_of_mass'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionFileCenterOfMass'>, 'config': {'title': 'OptionFileCenterOfMass'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileCenterOfMass'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileCenterOfMass:94376052755504', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'center_of_mass': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'cls': <class 'kittycad.models.point3d.Point3d'>, 'config': {'title': 'Point3d'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.point3d.Point3d'>>]}, 'ref': 'kittycad.models.point3d.Point3d:94376054348160', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'x': {'metadata': {}, 'schema': {'type': 'float'}, 'type': 'model-field'}, 'y': {'metadata': {}, 'schema': {'type': 'float'}, 'type': 'model-field'}, 'z': {'metadata': {}, 'schema': {'type': 'float'}, 'type': 'model-field'}}, 'model_name': 'Point3d', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitLength'>, 'members': [UnitLength.CM, UnitLength.FT, UnitLength.IN, UnitLength.M, UnitLength.MM, UnitLength.YD], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_center_of_mass', 'schema': {'expected': ['file_center_of_mass'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionFileCenterOfMass', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'center_of_mass': FieldInfo(annotation=Union[Point3d, NoneType], required=False, default=None), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitLength, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_center_of_mass'], required=False, default='file_center_of_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a3198c30,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fb464736af0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30d8f80,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb46454c6f0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_center_of_mass",                                             },                                             expected_py: None,                                             name: "literal['file_center_of_mass']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "center_of_mass": SerField {                         key_py: Py(                             0x00007fb463ea3370,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x000055d5a331d980,                                                     ),                                                     serializer: Fields(                                                         GeneralFieldsSerializer {                                                             fields: {                                                                 "x": SerField {                                                                     key_py: Py(                                                                         0x00007fb467c24420,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                                 "y": SerField {                                                                     key_py: Py(                                                                         0x00007fb467c24450,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                                 "z": SerField {                                                                     key_py: Py(                                                                         0x00007fb467c24480,                                                                     ),                                                                     alias: None,                                                                     alias_py: None,                                                                     serializer: Some(                                                                         Float(                                                                             FloatSerializer {                                                                                 inf_nan_mode: Null,                                                                             },                                                                         ),                                                                     ),                                                                     required: true,                                                                 },                                                             },                                                             computed_fields: Some(                                                                 ComputedFields(                                                                     [],                                                                 ),                                                             ),                                                             mode: SimpleDict,                                                             extra_serializer: None,                                                             filter: SchemaFilter {                                                                 include: None,                                                                 exclude: None,                                                             },                                                             required_fields: 3,                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: false,                                                     name: "Point3d",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileCenterOfMass",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileCenterOfMass", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "center_of_mass",                         lookup_key: Simple {                             key: "center_of_mass",                             py_key: Py(                                 0x00007fb4635b28f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "center_of_mass",                                         Py(                                             0x00007fb4635b10b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463ea3370,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: ModelFields(                                                     ModelFieldsValidator {                                                         fields: [                                                             Field {                                                                 name: "x",                                                                 lookup_key: Simple {                                                                     key: "x",                                                                     py_key: Py(                                                                         0x00007fb467c24420,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "x",                                                                                 Py(                                                                                     0x00007fb467c24420,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fb467c24420,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                             Field {                                                                 name: "y",                                                                 lookup_key: Simple {                                                                     key: "y",                                                                     py_key: Py(                                                                         0x00007fb467c24450,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "y",                                                                                 Py(                                                                                     0x00007fb467c24450,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fb467c24450,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                             Field {                                                                 name: "z",                                                                 lookup_key: Simple {                                                                     key: "z",                                                                     py_key: Py(                                                                         0x00007fb467c24480,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "z",                                                                                 Py(                                                                                     0x00007fb467c24480,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                                 name_py: Py(                                                                     0x00007fb467c24480,                                                                 ),                                                                 validator: Float(                                                                     FloatValidator {                                                                         strict: false,                                                                         allow_inf_nan: true,                                                                     },                                                                 ),                                                                 frozen: false,                                                             },                                                         ],                                                         model_name: "Point3d",                                                         extra_behavior: Ignore,                                                         extras_validator: None,                                                         strict: false,                                                         from_attributes: false,                                                         loc_by_alias: true,                                                     },                                                 ),                                                 class: Py(                                                     0x000055d5a331d980,                                                 ),                                                 generic_origin: None,                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: false,                                                 undefined: Py(                                                     0x00007fb465c3e3d0,                                                 ),                                                 name: "Point3d",                                             },                                         ),                                         name: "nullable[Point3d]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[Point3d]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb4635b2af0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb4635b2a30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb4635b28b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb4635b2930,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e94d20,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e94db0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e94de0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e94e10,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4635b1180,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fb4635b1c30,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fb4635b32b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464736af0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30d8f80,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "ft": 1,                                             "cm": 0,                                             "mm": 4,                                             "yd": 5,                                             "m": 3,                                             "in": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4635b2080,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ef2f0,                                         ),                                         Py(                                             0x00007fb4635ef8f0,                                         ),                                         Py(                                             0x00007fb4635ef950,                                         ),                                         Py(                                             0x00007fb4635ef890,                                         ),                                         Py(                                             0x00007fb4635efa70,                                         ),                                         Py(                                             0x00007fb4635efad0,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'cm', 'ft', 'in', 'm', 'mm' or 'yd'",                                 strict: false,                                 class_repr: "UnitLength",                                 name: "str-enum[UnitLength]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb4635b2f30,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb463d117f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "fbx": 0,                                             "obj": 2,                                             "step": 5,                                             "gltf": 1,                                             "stl": 6,                                             "sldprt": 4,                                             "ply": 3,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4635b1480,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb463d12ef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb463d118f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e94e40,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e94e70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "completed": 3,                                             "in_progress": 2,                                             "queued": 0,                                             "uploaded": 1,                                             "failed": 4,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb463d11340,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e94ea0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e94ed0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb46454c6f0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_center_of_mass": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb463d12440,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb46454c6f0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_center_of_mass'",                                         name: "literal['file_center_of_mass']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_center_of_mass']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb463d12730,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb463d131b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e94f00,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e94f60,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4635b1180,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileCenterOfMass",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a3198c30,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileCenterOfMass",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, center_of_mass: Optional[kittycad.models.point3d.Point3d] = None, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_length.UnitLength, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_center_of_mass'] = 'file_center_of_mass', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

center_of_mass: Optional[Point3d][source]
completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'center_of_mass': FieldInfo(annotation=Union[Point3d, NoneType], required=False, default=None), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitLength, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_center_of_mass'], required=False, default='file_center_of_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_unit: UnitLength[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_center_of_mass'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionFileConversion(**data)[source][source]

A file conversion.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_format': <enum 'FileExportFormat'>, 'output_format_options': typing.Optional[pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]], 'outputs': typing.Optional[typing.Dict[str, kittycad.models.base64data.Base64Data]], 'src_format': <enum 'FileImportFormat'>, 'src_format_options': typing.Optional[pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]], 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_conversion'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'definitions': [{'cls': <class 'kittycad.models.axis_direction_pair.AxisDirectionPair'>, 'config': {'title': 'AxisDirectionPair'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.axis_direction_pair.AxisDirectionPair'>>]}, 'ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:94376051952784', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'axis': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.axis.Axis:94376050389168', 'type': 'definition-ref'}, 'type': 'model-field'}, 'direction': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.direction.Direction:94376051950224', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'AxisDirectionPair', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <enum 'Axis'>, 'members': [Axis.Y, Axis.Z], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.axis.Axis:94376050389168', 'sub_type': 'str', 'type': 'enum'}, {'cls': <enum 'Direction'>, 'members': [Direction.POSITIVE, Direction.NEGATIVE], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.direction.Direction:94376051950224', 'sub_type': 'str', 'type': 'enum'}, {'cls': <class 'kittycad.models.system.System'>, 'config': {'title': 'System'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.system.System'>>]}, 'ref': 'kittycad.models.system.System:94376051957152', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'forward': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:94376051952784', 'type': 'definition-ref'}, 'type': 'model-field'}, 'up': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.axis_direction_pair.AxisDirectionPair:94376051952784', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'System', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <enum 'UnitLength'>, 'members': [UnitLength.CM, UnitLength.FT, UnitLength.IN, UnitLength.M, UnitLength.MM, UnitLength.YD], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'sub_type': 'str', 'type': 'enum'}, {'cls': <class 'kittycad.models.selection.OptionDefaultScene'>, 'config': {'title': 'OptionDefaultScene'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.OptionDefaultScene'>>]}, 'ref': 'kittycad.models.selection.OptionDefaultScene:94376053224400', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'type': {'metadata': {}, 'schema': {'default': 'default_scene', 'schema': {'expected': ['default_scene'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionDefaultScene', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <class 'kittycad.models.selection.OptionSceneByIndex'>, 'config': {'title': 'OptionSceneByIndex'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.OptionSceneByIndex'>>]}, 'ref': 'kittycad.models.selection.OptionSceneByIndex:94376053228096', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'index': {'metadata': {}, 'schema': {'type': 'int'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'scene_by_index', 'schema': {'expected': ['scene_by_index'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionSceneByIndex', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <class 'kittycad.models.selection.OptionSceneByName'>, 'config': {'title': 'OptionSceneByName'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.OptionSceneByName'>>]}, 'ref': 'kittycad.models.selection.OptionSceneByName:94376053237504', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'name': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'scene_by_name', 'schema': {'expected': ['scene_by_name'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionSceneByName', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <class 'kittycad.models.selection.OptionMeshByIndex'>, 'config': {'title': 'OptionMeshByIndex'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.OptionMeshByIndex'>>]}, 'ref': 'kittycad.models.selection.OptionMeshByIndex:94376053306736', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'index': {'metadata': {}, 'schema': {'type': 'int'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'mesh_by_index', 'schema': {'expected': ['mesh_by_index'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionMeshByIndex', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <class 'kittycad.models.selection.OptionMeshByName'>, 'config': {'title': 'OptionMeshByName'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.selection.OptionMeshByName'>>]}, 'ref': 'kittycad.models.selection.OptionMeshByName:94376053314992', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'name': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'mesh_by_name', 'schema': {'expected': ['mesh_by_name'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionMeshByName', 'type': 'model-fields'}, 'type': 'model'}, {'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'config': {'title': "RootModel[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'custom_init': False, 'generic_origin': <class 'pydantic.root_model.RootModel'>, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>]}, 'ref': "pydantic.root_model.RootModel:94376048888992[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140412748080208]", 'root_model': True, 'schema': {'choices': {'default_scene': {'schema_ref': 'kittycad.models.selection.OptionDefaultScene:94376053224400', 'type': 'definition-ref'}, 'mesh_by_index': {'schema_ref': 'kittycad.models.selection.OptionMeshByIndex:94376053306736', 'type': 'definition-ref'}, 'mesh_by_name': {'schema_ref': 'kittycad.models.selection.OptionMeshByName:94376053314992', 'type': 'definition-ref'}, 'scene_by_index': {'schema_ref': 'kittycad.models.selection.OptionSceneByIndex:94376053228096', 'type': 'definition-ref'}, 'scene_by_name': {'schema_ref': 'kittycad.models.selection.OptionSceneByName:94376053237504', 'type': 'definition-ref'}}, 'discriminator': 'type', 'from_attributes': True, 'metadata': {}, 'strict': False, 'type': 'tagged-union'}, 'type': 'model'}], 'schema': {'cls': <class 'kittycad.models.async_api_call_output.OptionFileConversion'>, 'config': {'title': 'OptionFileConversion'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileConversion'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileConversion:94376052280160', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_format': {'metadata': {}, 'schema': {'cls': <enum 'FileExportFormat'>, 'members': [FileExportFormat.FBX, FileExportFormat.GLB, FileExportFormat.GLTF, FileExportFormat.OBJ, FileExportFormat.PLY, FileExportFormat.STEP, FileExportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_export_format.FileExportFormat:94376053319792', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'output_format_options': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'config': {'title': "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'custom_init': False, 'generic_origin': <class 'pydantic.root_model.RootModel'>, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>]}, 'ref': "pydantic.root_model.RootModel:94376048888992[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140412750170160]", 'root_model': True, 'schema': {'choices': {'fbx': {'cls': <class 'kittycad.models.output_format.OptionFbx'>, 'config': {'title': 'OptionFbx'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionFbx'>>]}, 'ref': 'kittycad.models.output_format.OptionFbx:94376054131264', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'storage': {'metadata': {}, 'schema': {'cls': <enum 'FbxStorage'>, 'members': [FbxStorage.ASCII, FbxStorage.BINARY], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.fbx_storage.FbxStorage:94376053303168', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'fbx', 'schema': {'expected': ['fbx'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionFbx', 'type': 'model-fields'}, 'type': 'model'}, 'gltf': {'cls': <class 'kittycad.models.output_format.OptionGltf'>, 'config': {'title': 'OptionGltf'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionGltf'>>]}, 'ref': 'kittycad.models.output_format.OptionGltf:94376054141440', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'presentation': {'metadata': {}, 'schema': {'cls': <enum 'GltfPresentation'>, 'members': [GltfPresentation.COMPACT, GltfPresentation.PRETTY], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.gltf_presentation.GltfPresentation:94376053295568', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'storage': {'metadata': {}, 'schema': {'cls': <enum 'GltfStorage'>, 'members': [GltfStorage.BINARY, GltfStorage.STANDARD, GltfStorage.EMBEDDED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.gltf_storage.GltfStorage:94376053297344', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'gltf', 'schema': {'expected': ['gltf'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionGltf', 'type': 'model-fields'}, 'type': 'model'}, 'obj': {'cls': <class 'kittycad.models.output_format.OptionObj'>, 'config': {'title': 'OptionObj'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionObj'>>]}, 'ref': 'kittycad.models.output_format.OptionObj:94376054158112', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'obj', 'schema': {'expected': ['obj'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionObj', 'type': 'model-fields'}, 'type': 'model'}, 'ply': {'cls': <class 'kittycad.models.output_format.OptionPly'>, 'config': {'title': 'OptionPly'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionPly'>>]}, 'ref': 'kittycad.models.output_format.OptionPly:94376054180640', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'selection': {'metadata': {}, 'schema': {'schema_ref': "pydantic.root_model.RootModel:94376048888992[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140412748080208]", 'type': 'definition-ref'}, 'type': 'model-field'}, 'storage': {'metadata': {}, 'schema': {'cls': <enum 'PlyStorage'>, 'members': [PlyStorage.ASCII, PlyStorage.BINARY_LITTLE_ENDIAN, PlyStorage.BINARY_BIG_ENDIAN], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.ply_storage.PlyStorage:94376053299904', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'ply', 'schema': {'expected': ['ply'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionPly', 'type': 'model-fields'}, 'type': 'model'}, 'step': {'cls': <class 'kittycad.models.output_format.OptionStep'>, 'config': {'title': 'OptionStep'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionStep'>>]}, 'ref': 'kittycad.models.output_format.OptionStep:94376052994800', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'step', 'schema': {'expected': ['step'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionStep', 'type': 'model-fields'}, 'type': 'model'}, 'stl': {'cls': <class 'kittycad.models.output_format.OptionStl'>, 'config': {'title': 'OptionStl'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.output_format.OptionStl'>>]}, 'ref': 'kittycad.models.output_format.OptionStl:94376053016240', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'selection': {'metadata': {}, 'schema': {'schema_ref': "pydantic.root_model.RootModel:94376048888992[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140412748080208]", 'type': 'definition-ref'}, 'type': 'model-field'}, 'storage': {'metadata': {}, 'schema': {'cls': <enum 'StlStorage'>, 'members': [StlStorage.ASCII, StlStorage.BINARY], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.stl_storage.StlStorage:94376054155376', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'stl', 'schema': {'expected': ['stl'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionStl', 'type': 'model-fields'}, 'type': 'model'}}, 'discriminator': 'type', 'from_attributes': True, 'metadata': {}, 'strict': False, 'type': 'tagged-union'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'outputs': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'keys_schema': {'type': 'str'}, 'type': 'dict', 'values_schema': {'function': {'function': <bound method Base64Data.validate of <class 'kittycad.models.base64data.Base64Data'>>, 'type': 'no-info'}, 'schema': {'choices': [{'type': 'str'}, {'type': 'bytes'}], 'type': 'union'}, 'serialization': {'function': <bound method Base64Data.serialize of <class 'kittycad.models.base64data.Base64Data'>>, 'type': 'function-plain'}, 'type': 'function-after'}}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format_options': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'cls': <class 'pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>, 'config': {'title': "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]"}, 'custom_init': False, 'generic_origin': <class 'pydantic.root_model.RootModel'>, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]'>>]}, 'ref': "pydantic.root_model.RootModel:94376048888992[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]:140412748074640]", 'root_model': True, 'schema': {'choices': {'fbx': {'cls': <class 'kittycad.models.input_format.OptionFbx'>, 'config': {'title': 'OptionFbx'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionFbx'>>]}, 'ref': 'kittycad.models.input_format.OptionFbx:94376051972480', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'type': {'metadata': {}, 'schema': {'default': 'fbx', 'schema': {'expected': ['fbx'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionFbx', 'type': 'model-fields'}, 'type': 'model'}, 'gltf': {'cls': <class 'kittycad.models.input_format.OptionGltf'>, 'config': {'title': 'OptionGltf'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionGltf'>>]}, 'ref': 'kittycad.models.input_format.OptionGltf:94376051978368', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'type': {'metadata': {}, 'schema': {'default': 'gltf', 'schema': {'expected': ['gltf'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionGltf', 'type': 'model-fields'}, 'type': 'model'}, 'obj': {'cls': <class 'kittycad.models.input_format.OptionObj'>, 'config': {'title': 'OptionObj'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionObj'>>]}, 'ref': 'kittycad.models.input_format.OptionObj:94376048824448', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'obj', 'schema': {'expected': ['obj'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionObj', 'type': 'model-fields'}, 'type': 'model'}, 'ply': {'cls': <class 'kittycad.models.input_format.OptionPly'>, 'config': {'title': 'OptionPly'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionPly'>>]}, 'ref': 'kittycad.models.input_format.OptionPly:94376048798624', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'ply', 'schema': {'expected': ['ply'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionPly', 'type': 'model-fields'}, 'type': 'model'}, 'sldprt': {'cls': <class 'kittycad.models.input_format.OptionSldprt'>, 'config': {'title': 'OptionSldprt'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionSldprt'>>]}, 'ref': 'kittycad.models.input_format.OptionSldprt:94376048821280', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'split_closed_faces': {'metadata': {}, 'schema': {'default': False, 'schema': {'type': 'bool'}, 'type': 'default'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'sldprt', 'schema': {'expected': ['sldprt'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionSldprt', 'type': 'model-fields'}, 'type': 'model'}, 'step': {'cls': <class 'kittycad.models.input_format.OptionStep'>, 'config': {'title': 'OptionStep'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionStep'>>]}, 'ref': 'kittycad.models.input_format.OptionStep:94376048853856', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'split_closed_faces': {'metadata': {}, 'schema': {'default': False, 'schema': {'type': 'bool'}, 'type': 'default'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'step', 'schema': {'expected': ['step'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionStep', 'type': 'model-fields'}, 'type': 'model'}, 'stl': {'cls': <class 'kittycad.models.input_format.OptionStl'>, 'config': {'title': 'OptionStl'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.input_format.OptionStl'>>]}, 'ref': 'kittycad.models.input_format.OptionStl:94376048862800', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'coords': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.system.System:94376051957152', 'type': 'definition-ref'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'stl', 'schema': {'expected': ['stl'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'units': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.unit_length.UnitLength:94376051969920', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'OptionStl', 'type': 'model-fields'}, 'type': 'model'}}, 'discriminator': 'type', 'from_attributes': True, 'metadata': {}, 'strict': False, 'type': 'tagged-union'}, 'type': 'model'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_conversion', 'schema': {'expected': ['file_conversion'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionFileConversion', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'definitions'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'output_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False, default=None), 'outputs': FieldInfo(annotation=Union[Dict[str, Base64Data], NoneType], required=False, default=None), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'src_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False, default=None), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_conversion'], required=False, default='file_conversion'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a3124b60,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_format": SerField {                         key_py: Py(                             0x00007fb463f48370,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3222870,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "outputs": SerField {                         key_py: Py(                             0x00007fb463f88930,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Dict(                                                 DictSerializer {                                                     key_serializer: Str(                                                         StrSerializer,                                                     ),                                                     value_serializer: Function(                                                         FunctionPlainSerializer {                                                             func: Py(                                                                 0x00007fb463d7d740,                                                             ),                                                             name: "plain_function[serialize]",                                                             function_name: "serialize",                                                             return_serializer: Any(                                                                 AnySerializer,                                                             ),                                                             fallback_serializer: None,                                                             when_used: Always,                                                             is_field_serializer: false,                                                             info_arg: false,                                                         },                                                     ),                                                     filter: SchemaFilter {                                                         include: None,                                                         exclude: None,                                                     },                                                     name: "dict[str, plain_function[serialize]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format_options": SerField {                         key_py: Py(                             0x00007fb463604230,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x000055d5a33028d0,                                                     ),                                                     serializer: TaggedUnion(                                                         TaggedUnionSerializer {                                                             discriminator: LookupKey(                                                                 Simple {                                                                     key: "type",                                                                     py_key: Py(                                                                         0x00007fb467c22880,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "type",                                                                                 Py(                                                                                     0x00007fb467c22880,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                             ),                                                             lookup: {                                                                 "step": 5,                                                                 "fbx": 0,                                                                 "gltf": 1,                                                                 "ply": 3,                                                                 "stl": 6,                                                                 "obj": 2,                                                                 "sldprt": 4,                                                             },                                                             choices: [                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a30d9980,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f879c0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "fbx",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['fbx']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionFbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a30db080,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87bd0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "gltf",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['gltf']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 1,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionGltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a2dd9080,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467c20a40,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "obj",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['obj']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionObj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a2dd2ba0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87d80,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "ply",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['ply']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionPly",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a2dd8420,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "split_closed_faces": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463d7baf0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467b16d20,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Bool(                                                                                                         BoolSerializer,                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f8b180,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "sldprt",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['sldprt']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionSldprt",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a2de0360,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "split_closed_faces": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463d7baf0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467b16d20,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Bool(                                                                                                         BoolSerializer,                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467c220f0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "step",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['step']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionStep",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a2de2650,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87f60,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "stl",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['stl']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionStl",                                                                     },                                                                 ),                                                             ],                                                             name: "TaggedUnion[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl]",                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: true,                                                     name: "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb464090070,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_conversion",                                             },                                             expected_py: None,                                             name: "literal['file_conversion']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "output_format_options": SerField {                         key_py: Py(                             0x00007fb463604330,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Model(                                                 ModelSerializer {                                                     class: Py(                                                         0x000055d5a31e8510,                                                     ),                                                     serializer: TaggedUnion(                                                         TaggedUnionSerializer {                                                             discriminator: LookupKey(                                                                 Simple {                                                                     key: "type",                                                                     py_key: Py(                                                                         0x00007fb467c22880,                                                                     ),                                                                     path: LookupPath(                                                                         [                                                                             S(                                                                                 "type",                                                                                 Py(                                                                                     0x00007fb467c22880,                                                                                 ),                                                                             ),                                                                         ],                                                                     ),                                                                 },                                                             ),                                                             lookup: {                                                                 "step": 4,                                                                 "obj": 2,                                                                 "fbx": 0,                                                                 "ply": 3,                                                                 "gltf": 1,                                                                 "stl": 5,                                                             },                                                             choices: [                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a32e8a40,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Enum(                                                                                                 EnumSerializer {                                                                                                     class: Py(                                                                                                         0x000055d5a321e780,                                                                                                     ),                                                                                                     serializer: Some(                                                                                                         Str(                                                                                                             StrSerializer,                                                                                                         ),                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f879c0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "fbx",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['fbx']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionFbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a32eb200,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Enum(                                                                                                 EnumSerializer {                                                                                                     class: Py(                                                                                                         0x000055d5a321d0c0,                                                                                                     ),                                                                                                     serializer: Some(                                                                                                         Str(                                                                                                             StrSerializer,                                                                                                         ),                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87bd0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "gltf",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['gltf']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "presentation": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463d34470,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Enum(                                                                                                 EnumSerializer {                                                                                                     class: Py(                                                                                                         0x000055d5a321c9d0,                                                                                                     ),                                                                                                     serializer: Some(                                                                                                         Str(                                                                                                             StrSerializer,                                                                                                         ),                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionGltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a32ef320,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467c20a40,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "obj",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['obj']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 3,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionObj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a32f4b20,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "selection": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f49d70,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87d80,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "ply",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['ply']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Enum(                                                                                                 EnumSerializer {                                                                                                     class: Py(                                                                                                         0x000055d5a321dac0,                                                                                                     ),                                                                                                     serializer: Some(                                                                                                         Str(                                                                                                             StrSerializer,                                                                                                         ),                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 5,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionPly",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a31d32f0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb467c220f0,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "step",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['step']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionStep",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a31d86b0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "selection": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f49d70,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "units": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: false,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "type": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             WithDefault(                                                                                                 WithDefaultSerializer {                                                                                                     default: Default(                                                                                                         Py(                                                                                                             0x00007fb463f87f60,                                                                                                         ),                                                                                                     ),                                                                                                     serializer: Literal(                                                                                                         LiteralSerializer {                                                                                                             expected_int: {},                                                                                                             expected_str: {                                                                                                                 "stl",                                                                                                             },                                                                                                             expected_py: None,                                                                                                             name: "literal['stl']",                                                                                                         },                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "storage": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Enum(                                                                                                 EnumSerializer {                                                                                                     class: Py(                                                                                                         0x000055d5a32ee870,                                                                                                     ),                                                                                                     serializer: Some(                                                                                                         Str(                                                                                                             StrSerializer,                                                                                                         ),                                                                                                     ),                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "coords": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 5,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "OptionStl",                                                                     },                                                                 ),                                                             ],                                                             name: "TaggedUnion[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl]",                                                         },                                                     ),                                                     has_extra: false,                                                     root_model: true,                                                     name: "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileConversion",     }, ), definitions=[Model(ModelSerializer { class: Py(0x55d5a30d4c90), serializer: Fields(GeneralFieldsSerializer { fields: {"axis": SerField { key_py: Py(0x7fb4643451d0), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: false })), required: true }, "direction": SerField { key_py: Py(0x7fb466789470), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: false })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "AxisDirectionPair" }), Model(ModelSerializer { class: Py(0x55d5a320b3d0), serializer: Fields(GeneralFieldsSerializer { fields: {"type": SerField { key_py: Py(0x7fb467c22880), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fb46359a0b0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"default_scene"}, expected_py: None, name: "literal['default_scene']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 1 }), has_extra: false, root_model: false, name: "OptionDefaultScene" }), Model(ModelSerializer { class: Py(0x55d5a320c240), serializer: Fields(GeneralFieldsSerializer { fields: {"type": SerField { key_py: Py(0x7fb467c22880), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fb46359b930)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"scene_by_index"}, expected_py: None, name: "literal['scene_by_index']" }) })), required: true }, "index": SerField { key_py: Py(0x7fb467be0cc0), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "OptionSceneByIndex" }), Model(ModelSerializer { class: Py(0x55d5a321f570), serializer: Fields(GeneralFieldsSerializer { fields: {"index": SerField { key_py: Py(0x7fb467be0cc0), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }, "type": SerField { key_py: Py(0x7fb467c22880), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fb463d18770)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"mesh_by_index"}, expected_py: None, name: "literal['mesh_by_index']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "OptionMeshByIndex" }), Enum(EnumSerializer { class: Py(0x55d5a30d8f80), serializer: Some(Str(StrSerializer)) }), Model(ModelSerializer { class: Py(0x55d5a30d5da0), serializer: Fields(GeneralFieldsSerializer { fields: {"up": SerField { key_py: Py(0x7fb465d851d0), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true })), required: true }, "forward": SerField { key_py: Py(0x7fb464252e20), alias: None, alias_py: None, serializer: Some(Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "System" }), Enum(EnumSerializer { class: Py(0x55d5a30d4290), serializer: Some(Str(StrSerializer)) }), Model(ModelSerializer { class: Py(0x55d5a320e700), serializer: Fields(GeneralFieldsSerializer { fields: {"name": SerField { key_py: Py(0x7fb467c20668), alias: None, alias_py: None, serializer: Some(Str(StrSerializer)), required: true }, "type": SerField { key_py: Py(0x7fb467c22880), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fb46359baf0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"scene_by_name"}, expected_py: None, name: "literal['scene_by_name']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "OptionSceneByName" }), Enum(EnumSerializer { class: Py(0x55d5a2f570b0), serializer: Some(Str(StrSerializer)) }), Model(ModelSerializer { class: Py(0x55d5a32215b0), serializer: Fields(GeneralFieldsSerializer { fields: {"name": SerField { key_py: Py(0x7fb467c20668), alias: None, alias_py: None, serializer: Some(Str(StrSerializer)), required: true }, "type": SerField { key_py: Py(0x7fb467c22880), alias: None, alias_py: None, serializer: Some(WithDefault(WithDefaultSerializer { default: Default(Py(0x7fb463d1a7b0)), serializer: Literal(LiteralSerializer { expected_int: {}, expected_str: {"mesh_by_name"}, expected_py: None, name: "literal['mesh_by_name']" }) })), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "OptionMeshByName" }), Model(ModelSerializer { class: Py(0x55d5a3213670), serializer: TaggedUnion(TaggedUnionSerializer { discriminator: LookupKey(Simple { key: "type", py_key: Py(0x7fb467c22880), path: LookupPath([S("type", Py(0x7fb467c22880))]) }), lookup: {"mesh_by_index": 3, "scene_by_name": 2, "scene_by_index": 1, "mesh_by_name": 4, "default_scene": 0}, choices: [Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true }), Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true }), Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true }), Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true }), Recursive(DefinitionRefSerializer { definition: "...", retry_with_lax_check: true })], name: "TaggedUnion[definition-ref, definition-ref, definition-ref, definition-ref, definition-ref]" }), has_extra: false, root_model: true, name: "RootModel[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]" })])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileConversion", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb4633cb0f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb4633cb0b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb4633cb070,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb4633cb030,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e93ea0,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e93db0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e92850,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e92ca0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb46352c240,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format",                         lookup_key: Simple {                             key: "output_format",                             py_key: Py(                                 0x00007fb4633caff0,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format",                                         Py(                                             0x00007fb4633cafb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f48370,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3222870,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "fbx": 0,                                             "stl": 6,                                             "ply": 4,                                             "obj": 3,                                             "step": 5,                                             "glb": 1,                                             "gltf": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633cb180,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eebd0,                                         ),                                         Py(                                             0x00007fb4635eec30,                                         ),                                         Py(                                             0x00007fb4635eec90,                                         ),                                         Py(                                             0x00007fb4635eecf0,                                         ),                                         Py(                                             0x00007fb4635eed50,                                         ),                                         Py(                                             0x00007fb4635eedb0,                                         ),                                         Py(                                             0x00007fb4635eee10,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'glb', 'gltf', 'obj', 'ply', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileExportFormat",                                 name: "str-enum[FileExportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format_options",                         lookup_key: Simple {                             key: "output_format_options",                             py_key: Py(                                 0x00007fb4633caab0,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format_options",                                         Py(                                             0x00007fb4633caa70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463604330,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: TaggedUnion(                                                     TaggedUnionValidator {                                                         discriminator: LookupKey(                                                             Simple {                                                                 key: "type",                                                                 py_key: Py(                                                                     0x00007fb467c22880,                                                                 ),                                                                 path: LookupPath(                                                                     [                                                                         S(                                                                             "type",                                                                             Py(                                                                                 0x00007fb467c22880,                                                                             ),                                                                         ),                                                                     ],                                                                 ),                                                             },                                                         ),                                                         lookup: LiteralLookup {                                                             expected_bool: None,                                                             expected_int: None,                                                             expected_str: Some(                                                                 {                                                                     "step": 4,                                                                     "fbx": 0,                                                                     "gltf": 1,                                                                     "obj": 2,                                                                     "ply": 3,                                                                     "stl": 5,                                                                 },                                                             ),                                                             expected_py_dict: None,                                                             expected_py_values: None,                                                             expected_py_primitives: Some(                                                                 Py(                                                                     0x00007fb4633cab00,                                                                 ),                                                             ),                                                             values: [                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92880,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007fb463e927f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         validator: StrEnum(                                                                                             EnumValidator {                                                                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                                                                 class: Py(                                                                                                     0x000055d5a321e780,                                                                                                 ),                                                                                                 lookup: LiteralLookup {                                                                                                     expected_bool: None,                                                                                                     expected_int: None,                                                                                                     expected_str: Some(                                                                                                         {                                                                                                             "ascii": 0,                                                                                                             "binary": 1,                                                                                                         },                                                                                                     ),                                                                                                     expected_py_dict: None,                                                                                                     expected_py_values: None,                                                                                                     expected_py_primitives: Some(                                                                                                         Py(                                                                                                             0x00007fb4633caf40,                                                                                                         ),                                                                                                     ),                                                                                                     values: [                                                                                                         Py(                                                                                                             0x00007fb4635c46b0,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c4830,                                                                                                         ),                                                                                                     ],                                                                                                 },                                                                                                 missing: None,                                                                                                 expected_repr: "'ascii' or 'binary'",                                                                                                 strict: false,                                                                                                 class_repr: "FbxStorage",                                                                                                 name: "str-enum[FbxStorage]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92be0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e928b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f879c0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "fbx": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633caf00,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f879c0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'fbx'",                                                                                                         name: "literal['fbx']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['fbx']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionFbx",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a32e8a40,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionFbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "presentation",                                                                                         lookup_key: Simple {                                                                                             key: "presentation",                                                                                             py_key: Py(                                                                                                 0x00007fb4633cae70,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "presentation",                                                                                                         Py(                                                                                                             0x00007fb4633cae30,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463d34470,                                                                                         ),                                                                                         validator: StrEnum(                                                                                             EnumValidator {                                                                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                                                                 class: Py(                                                                                                     0x000055d5a321c9d0,                                                                                                 ),                                                                                                 lookup: LiteralLookup {                                                                                                     expected_bool: None,                                                                                                     expected_int: None,                                                                                                     expected_str: Some(                                                                                                         {                                                                                                             "pretty": 1,                                                                                                             "compact": 0,                                                                                                         },                                                                                                     ),                                                                                                     expected_py_dict: None,                                                                                                     expected_py_values: None,                                                                                                     expected_py_primitives: Some(                                                                                                         Py(                                                                                                             0x00007fb4633caec0,                                                                                                         ),                                                                                                     ),                                                                                                     values: [                                                                                                         Py(                                                                                                             0x00007fb4635c48f0,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c49b0,                                                                                                         ),                                                                                                     ],                                                                                                 },                                                                                                 missing: None,                                                                                                 expected_repr: "'compact' or 'pretty'",                                                                                                 strict: false,                                                                                                 class_repr: "GltfPresentation",                                                                                                 name: "str-enum[GltfPresentation]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92b20,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007fb463e92430,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         validator: StrEnum(                                                                                             EnumValidator {                                                                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                                                                 class: Py(                                                                                                     0x000055d5a321d0c0,                                                                                                 ),                                                                                                 lookup: LiteralLookup {                                                                                                     expected_bool: None,                                                                                                     expected_int: None,                                                                                                     expected_str: Some(                                                                                                         {                                                                                                             "binary": 0,                                                                                                             "embedded": 2,                                                                                                             "standard": 1,                                                                                                         },                                                                                                     ),                                                                                                     expected_py_dict: None,                                                                                                     expected_py_values: None,                                                                                                     expected_py_primitives: Some(                                                                                                         Py(                                                                                                             0x00007fb4633cae00,                                                                                                         ),                                                                                                     ),                                                                                                     values: [                                                                                                         Py(                                                                                                             0x00007fb4635c4a70,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c4b30,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c4bf0,                                                                                                         ),                                                                                                     ],                                                                                                 },                                                                                                 missing: None,                                                                                                 expected_repr: "'binary', 'standard' or 'embedded'",                                                                                                 strict: false,                                                                                                 class_repr: "GltfStorage",                                                                                                 name: "str-enum[GltfStorage]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92a60,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e92b80,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87bd0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "gltf": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633cadc0,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87bd0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'gltf'",                                                                                                         name: "literal['gltf']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['gltf']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionGltf",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a32eb200,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionGltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92b50,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e92610,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e92c40,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e92c70,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467c20a40,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "obj": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633cad80,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb467c20a40,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'obj'",                                                                                                         name: "literal['obj']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['obj']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e93fc0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e93ed0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionObj",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a32ef320,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionObj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e93f00,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e93f60,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "selection",                                                                                         lookup_key: Simple {                                                                                             key: "selection",                                                                                             py_key: Py(                                                                                                 0x00007fb4633cad30,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "selection",                                                                                                         Py(                                                                                                             0x00007fb4633cacf0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f49d70,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007fb463e93f90,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007fb463e942d0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         validator: StrEnum(                                                                                             EnumValidator {                                                                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                                                                 class: Py(                                                                                                     0x000055d5a321dac0,                                                                                                 ),                                                                                                 lookup: LiteralLookup {                                                                                                     expected_bool: None,                                                                                                     expected_int: None,                                                                                                     expected_str: Some(                                                                                                         {                                                                                                             "binary_little_endian": 1,                                                                                                             "binary_big_endian": 2,                                                                                                             "ascii": 0,                                                                                                         },                                                                                                     ),                                                                                                     expected_py_dict: None,                                                                                                     expected_py_values: None,                                                                                                     expected_py_primitives: Some(                                                                                                         Py(                                                                                                             0x00007fb4633cacc0,                                                                                                         ),                                                                                                     ),                                                                                                     values: [                                                                                                         Py(                                                                                                             0x00007fb4635c4c50,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c4cb0,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c4d10,                                                                                                         ),                                                                                                     ],                                                                                                 },                                                                                                 missing: None,                                                                                                 expected_repr: "'ascii', 'binary_little_endian' or 'binary_big_endian'",                                                                                                 strict: false,                                                                                                 class_repr: "PlyStorage",                                                                                                 name: "str-enum[PlyStorage]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94300,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e94060,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87d80,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "ply": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633cac80,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87d80,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'ply'",                                                                                                         name: "literal['ply']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['ply']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e97900,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e942a0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionPly",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a32f4b20,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionPly",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94270,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e941b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94390,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e94330,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467c220f0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "step": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633cac40,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb467c220f0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'step'",                                                                                                         name: "literal['step']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['step']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionStep",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a31d32f0,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionStep",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e943c0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e943f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "selection",                                                                                         lookup_key: Simple {                                                                                             key: "selection",                                                                                             py_key: Py(                                                                                                 0x00007fb4633cabf0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "selection",                                                                                                         Py(                                                                                                             0x00007fb4633cabb0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f49d70,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "storage",                                                                                         lookup_key: Simple {                                                                                             key: "storage",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94420,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "storage",                                                                                                         Py(                                                                                                             0x00007fb463e94450,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb465c7fae0,                                                                                         ),                                                                                         validator: StrEnum(                                                                                             EnumValidator {                                                                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                                                                 class: Py(                                                                                                     0x000055d5a32ee870,                                                                                                 ),                                                                                                 lookup: LiteralLookup {                                                                                                     expected_bool: None,                                                                                                     expected_int: None,                                                                                                     expected_str: Some(                                                                                                         {                                                                                                             "ascii": 0,                                                                                                             "binary": 1,                                                                                                         },                                                                                                     ),                                                                                                     expected_py_dict: None,                                                                                                     expected_py_values: None,                                                                                                     expected_py_primitives: Some(                                                                                                         Py(                                                                                                             0x00007fb4633cab80,                                                                                                         ),                                                                                                     ),                                                                                                     values: [                                                                                                         Py(                                                                                                             0x00007fb4635c5250,                                                                                                         ),                                                                                                         Py(                                                                                                             0x00007fb4635c52b0,                                                                                                         ),                                                                                                     ],                                                                                                 },                                                                                                 missing: None,                                                                                                 expected_repr: "'ascii' or 'binary'",                                                                                                 strict: false,                                                                                                 class_repr: "StlStorage",                                                                                                 name: "str-enum[StlStorage]",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94480,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e944b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87f60,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "stl": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633cab40,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87f60,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'stl'",                                                                                                         name: "literal['stl']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['stl']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e944e0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e94510,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionStl",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a31d86b0,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionStl",                                                                     },                                                                 ),                                                             ],                                                         },                                                         from_attributes: true,                                                         strict: false,                                                         custom_error: None,                                                         tags_repr: "'fbx', 'gltf', 'obj', 'ply', 'step', 'stl'",                                                         discriminator_repr: "'type'",                                                         name: "tagged-union[OptionFbx,OptionGltf,OptionObj,OptionPly,OptionStep,OptionStl]",                                                     },                                                 ),                                                 class: Py(                                                     0x000055d5a31e8510,                                                 ),                                                 generic_origin: Some(                                                     Py(                                                         0x000055d5a2de8ca0,                                                     ),                                                 ),                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: true,                                                 undefined: Py(                                                     0x00007fb465c3e3d0,                                                 ),                                                 name: "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                             },                                         ),                                         name: "nullable[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "outputs",                         lookup_key: Simple {                             key: "outputs",                             py_key: Py(                                 0x00007fb463e94540,                             ),                             path: LookupPath(                                 [                                     S(                                         "outputs",                                         Py(                                             0x00007fb463e94570,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f88930,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Dict(                                             DictValidator {                                                 strict: false,                                                 key_validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 value_validator: FunctionAfter(                                                     FunctionAfterValidator {                                                         validator: Union(                                                             UnionValidator {                                                                 mode: Smart,                                                                 choices: [                                                                     (                                                                         Str(                                                                             StrValidator {                                                                                 strict: false,                                                                                 coerce_numbers_to_str: false,                                                                             },                                                                         ),                                                                         None,                                                                     ),                                                                     (                                                                         Bytes(                                                                             BytesValidator {                                                                                 strict: false,                                                                                 bytes_mode: ValBytesMode {                                                                                     ser: Utf8,                                                                                 },                                                                             },                                                                         ),                                                                         None,                                                                     ),                                                                 ],                                                                 custom_error: None,                                                                 strict: false,                                                                 name: "union[str,bytes]",                                                             },                                                         ),                                                         func: Py(                                                             0x00007fb463d7db40,                                                         ),                                                         config: Py(                                                             0x00007fb46352c240,                                                         ),                                                         name: "function-after[validate(), union[str,bytes]]",                                                         field_name: None,                                                         info_arg: false,                                                     },                                                 ),                                                 min_length: None,                                                 max_length: None,                                                 name: "dict[str,function-after[validate(), union[str,bytes]]]",                                             },                                         ),                                         name: "nullable[dict[str,function-after[validate(), union[str,bytes]]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[dict[str,function-after[validate(), union[str,bytes]]]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb46358a230,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb4633caa30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "gltf": 1,                                             "stl": 6,                                             "sldprt": 4,                                             "fbx": 0,                                             "obj": 2,                                             "step": 5,                                             "ply": 3,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633caf80,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format_options",                         lookup_key: Simple {                             key: "src_format_options",                             py_key: Py(                                 0x00007fb4633ca6b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format_options",                                         Py(                                             0x00007fb4633ca670,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463604230,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Model(                                             ModelValidator {                                                 revalidate: Never,                                                 validator: TaggedUnion(                                                     TaggedUnionValidator {                                                         discriminator: LookupKey(                                                             Simple {                                                                 key: "type",                                                                 py_key: Py(                                                                     0x00007fb467c22880,                                                                 ),                                                                 path: LookupPath(                                                                     [                                                                         S(                                                                             "type",                                                                             Py(                                                                                 0x00007fb467c22880,                                                                             ),                                                                         ),                                                                     ],                                                                 ),                                                             },                                                         ),                                                         lookup: LiteralLookup {                                                             expected_bool: None,                                                             expected_int: None,                                                             expected_str: Some(                                                                 {                                                                     "gltf": 1,                                                                     "obj": 2,                                                                     "ply": 3,                                                                     "sldprt": 4,                                                                     "step": 5,                                                                     "stl": 6,                                                                     "fbx": 0,                                                                 },                                                             ),                                                             expected_py_dict: None,                                                             expected_py_values: None,                                                             expected_py_primitives: Some(                                                                 Py(                                                                     0x00007fb4633ca700,                                                                 ),                                                             ),                                                             values: [                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e945a0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e945d0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f879c0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "fbx": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca9c0,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f879c0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'fbx'",                                                                                                         name: "literal['fbx']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['fbx']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionFbx",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a30d9980,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionFbx",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94600,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e94630,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87bd0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "gltf": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca980,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87bd0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'gltf'",                                                                                                         name: "literal['gltf']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['gltf']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionGltf",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a30db080,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionGltf",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94660,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e94690,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e946c0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e946f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467c20a40,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "obj": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca940,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb467c20a40,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'obj'",                                                                                                         name: "literal['obj']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['obj']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94720,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e94750,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionObj",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a2dd9080,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionObj",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94780,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e947b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e947e0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e94810,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87d80,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "ply": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca900,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87d80,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'ply'",                                                                                                         name: "literal['ply']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['ply']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94840,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e94870,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionPly",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a2dd2ba0,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionPly",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "split_closed_faces",                                                                                         lookup_key: Simple {                                                                                             key: "split_closed_faces",                                                                                             py_key: Py(                                                                                                 0x00007fb4633ca8b0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "split_closed_faces",                                                                                                         Py(                                                                                                             0x00007fb4633ca870,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463d7baf0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467b16d20,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Bool(                                                                                                     BoolValidator {                                                                                                         strict: false,                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[bool]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e948a0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e948d0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f8b180,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "sldprt": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca840,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f8b180,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'sldprt'",                                                                                                         name: "literal['sldprt']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['sldprt']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionSldprt",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a2dd8420,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionSldprt",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "split_closed_faces",                                                                                         lookup_key: Simple {                                                                                             key: "split_closed_faces",                                                                                             py_key: Py(                                                                                                 0x00007fb4633ca7f0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "split_closed_faces",                                                                                                         Py(                                                                                                             0x00007fb4633ca7b0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463d7baf0,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467b16d20,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Bool(                                                                                                     BoolValidator {                                                                                                         strict: false,                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[bool]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94900,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e94930,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb467c220f0,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "step": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca780,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb467c220f0,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'step'",                                                                                                         name: "literal['step']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['step']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionStep",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a2de0360,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionStep",                                                                     },                                                                 ),                                                                 Model(                                                                     ModelValidator {                                                                         revalidate: Never,                                                                         validator: ModelFields(                                                                             ModelFieldsValidator {                                                                                 fields: [                                                                                     Field {                                                                                         name: "coords",                                                                                         lookup_key: Simple {                                                                                             key: "coords",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94960,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "coords",                                                                                                         Py(                                                                                                             0x00007fb463e94990,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb463f88630,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "type",                                                                                         lookup_key: Simple {                                                                                             key: "type",                                                                                             py_key: Py(                                                                                                 0x00007fb463e949c0,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "type",                                                                                                         Py(                                                                                                             0x00007fb463e949f0,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb467c22880,                                                                                         ),                                                                                         validator: WithDefault(                                                                                             WithDefaultValidator {                                                                                                 default: Default(                                                                                                     Py(                                                                                                         0x00007fb463f87f60,                                                                                                     ),                                                                                                 ),                                                                                                 on_error: Raise,                                                                                                 validator: Literal(                                                                                                     LiteralValidator {                                                                                                         lookup: LiteralLookup {                                                                                                             expected_bool: None,                                                                                                             expected_int: None,                                                                                                             expected_str: Some(                                                                                                                 {                                                                                                                     "stl": 0,                                                                                                                 },                                                                                                             ),                                                                                                             expected_py_dict: None,                                                                                                             expected_py_values: None,                                                                                                             expected_py_primitives: Some(                                                                                                                 Py(                                                                                                                     0x00007fb4633ca740,                                                                                                                 ),                                                                                                             ),                                                                                                             values: [                                                                                                                 Py(                                                                                                                     0x00007fb463f87f60,                                                                                                                 ),                                                                                                             ],                                                                                                         },                                                                                                         expected_repr: "'stl'",                                                                                                         name: "literal['stl']",                                                                                                     },                                                                                                 ),                                                                                                 validate_default: false,                                                                                                 copy_default: false,                                                                                                 name: "default[literal['stl']]",                                                                                                 undefined: Py(                                                                                                     0x00007fb465c3e3d0,                                                                                                 ),                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                     Field {                                                                                         name: "units",                                                                                         lookup_key: Simple {                                                                                             key: "units",                                                                                             py_key: Py(                                                                                                 0x00007fb463e94a20,                                                                                             ),                                                                                             path: LookupPath(                                                                                                 [                                                                                                     S(                                                                                                         "units",                                                                                                         Py(                                                                                                             0x00007fb463e94a50,                                                                                                         ),                                                                                                     ),                                                                                                 ],                                                                                             ),                                                                                         },                                                                                         name_py: Py(                                                                                             0x00007fb466a1ac10,                                                                                         ),                                                                                         validator: DefinitionRef(                                                                                             DefinitionRefValidator {                                                                                                 definition: "...",                                                                                             },                                                                                         ),                                                                                         frozen: false,                                                                                     },                                                                                 ],                                                                                 model_name: "OptionStl",                                                                                 extra_behavior: Ignore,                                                                                 extras_validator: None,                                                                                 strict: false,                                                                                 from_attributes: false,                                                                                 loc_by_alias: true,                                                                             },                                                                         ),                                                                         class: Py(                                                                             0x000055d5a2de2650,                                                                         ),                                                                         generic_origin: None,                                                                         post_init: None,                                                                         frozen: false,                                                                         custom_init: false,                                                                         root_model: false,                                                                         undefined: Py(                                                                             0x00007fb465c3e3d0,                                                                         ),                                                                         name: "OptionStl",                                                                     },                                                                 ),                                                             ],                                                         },                                                         from_attributes: true,                                                         strict: false,                                                         custom_error: None,                                                         tags_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step', 'stl'",                                                         discriminator_repr: "'type'",                                                         name: "tagged-union[OptionFbx,OptionGltf,OptionObj,OptionPly,OptionSldprt,OptionStep,OptionStl]",                                                     },                                                 ),                                                 class: Py(                                                     0x000055d5a33028d0,                                                 ),                                                 generic_origin: Some(                                                     Py(                                                         0x000055d5a2de8ca0,                                                     ),                                                 ),                                                 post_init: None,                                                 frozen: false,                                                 custom_init: false,                                                 root_model: true,                                                 undefined: Py(                                                     0x00007fb465c3e3d0,                                                 ),                                                 name: "RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]",                                             },                                         ),                                         name: "nullable[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb4633ca630,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb4633ca5f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e94a80,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e94ab0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "in_progress": 2,                                             "failed": 4,                                             "completed": 3,                                             "uploaded": 1,                                             "queued": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633caa00,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e94ae0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e94b10,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb464090070,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_conversion": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb4633ca5c0,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb464090070,                                                 ),                                             ],                                         },                                         expected_repr: "'file_conversion'",                                         name: "literal['file_conversion']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_conversion']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633ca570,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633ca530,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e94b40,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e94b70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb46352c240,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileConversion",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a3124b60,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileConversion",     }, ), definitions=[Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "forward", lookup_key: Simple { key: "forward", py_key: Py(0x7fb463e93870), path: LookupPath([S("forward", Py(0x7fb463e93990))]) }, name_py: Py(0x7fb464252e20), validator: DefinitionRef(DefinitionRefValidator { definition: "..." }), frozen: false }, Field { name: "up", lookup_key: Simple { key: "up", py_key: Py(0x7fb463e93a50), path: LookupPath([S("up", Py(0x7fb463e93a80))]) }, name_py: Py(0x7fb465d851d0), validator: DefinitionRef(DefinitionRefValidator { definition: "..." }), frozen: false }], model_name: "System", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a30d5da0), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "System" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "name", lookup_key: Simple { key: "name", py_key: Py(0x7fb463e93d80), path: LookupPath([S("name", Py(0x7fb463e93de0))]) }, name_py: Py(0x7fb467c20668), validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fb463e93e10), path: LookupPath([S("type", Py(0x7fb463e93e70))]) }, name_py: Py(0x7fb467c22880), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fb463d1a7b0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"mesh_by_name": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb1c0)), values: [Py(0x7fb463d1a7b0)] }, expected_repr: "'mesh_by_name'", name: "literal['mesh_by_name']" }), validate_default: false, copy_default: false, name: "default[literal['mesh_by_name']]", undefined: Py(0x7fb465c3e3d0) }), frozen: false }], model_name: "OptionMeshByName", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a32215b0), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "OptionMeshByName" }), Model(ModelValidator { revalidate: Never, validator: TaggedUnion(TaggedUnionValidator { discriminator: LookupKey(Simple { key: "type", py_key: Py(0x7fb467c22880), path: LookupPath([S("type", Py(0x7fb467c22880))]) }), lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"scene_by_index": 1, "mesh_by_name": 4, "scene_by_name": 2, "default_scene": 0, "mesh_by_index": 3}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb140)), values: [DefinitionRef(DefinitionRefValidator { definition: "OptionDefaultScene" }), DefinitionRef(DefinitionRefValidator { definition: "OptionSceneByIndex" }), DefinitionRef(DefinitionRefValidator { definition: "OptionSceneByName" }), DefinitionRef(DefinitionRefValidator { definition: "OptionMeshByIndex" }), DefinitionRef(DefinitionRefValidator { definition: "OptionMeshByName" })] }, from_attributes: true, strict: false, custom_error: None, tags_repr: "'default_scene', 'scene_by_index', 'scene_by_name', 'mesh_by_index', 'mesh_by_name'", discriminator_repr: "'type'", name: "tagged-union[OptionDefaultScene,OptionSceneByIndex,OptionSceneByName,OptionMeshByIndex,OptionMeshByName]" }), class: Py(0x55d5a3213670), generic_origin: Some(Py(0x55d5a2de8ca0)), post_init: None, frozen: false, custom_init: false, root_model: true, undefined: Py(0x7fb465c3e3d0), name: "RootModel[Annotated[Union[OptionDefaultScene, OptionSceneByIndex, OptionSceneByName, OptionMeshByIndex, OptionMeshByName], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "axis", lookup_key: Simple { key: "axis", py_key: Py(0x7fb463e93900), path: LookupPath([S("axis", Py(0x7fb463e938a0))]) }, name_py: Py(0x7fb4643451d0), validator: DefinitionRef(DefinitionRefValidator { definition: "..." }), frozen: false }, Field { name: "direction", lookup_key: Simple { key: "direction", py_key: Py(0x7fb4633cb3b0), path: LookupPath([S("direction", Py(0x7fb4633cb3f0))]) }, name_py: Py(0x7fb466789470), validator: DefinitionRef(DefinitionRefValidator { definition: "..." }), frozen: false }], model_name: "AxisDirectionPair", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a30d4c90), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "AxisDirectionPair" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "name", lookup_key: Simple { key: "name", py_key: Py(0x7fb463e93c60), path: LookupPath([S("name", Py(0x7fb463e93d50))]) }, name_py: Py(0x7fb467c20668), validator: Str(StrValidator { strict: false, coerce_numbers_to_str: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fb463e93c90), path: LookupPath([S("type", Py(0x7fb463e93ba0))]) }, name_py: Py(0x7fb467c22880), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fb46359baf0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"scene_by_name": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb240)), values: [Py(0x7fb46359baf0)] }, expected_repr: "'scene_by_name'", name: "literal['scene_by_name']" }), validate_default: false, copy_default: false, name: "default[literal['scene_by_name']]", undefined: Py(0x7fb465c3e3d0) }), frozen: false }], model_name: "OptionSceneByName", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a320e700), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "OptionSceneByName" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "index", lookup_key: Simple { key: "index", py_key: Py(0x7fb463e90ab0), path: LookupPath([S("index", Py(0x7fb463e93c30))]) }, name_py: Py(0x7fb467be0cc0), validator: Int(IntValidator { strict: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fb463e93bd0), path: LookupPath([S("type", Py(0x7fb463e93cf0))]) }, name_py: Py(0x7fb467c22880), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fb463d18770)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"mesh_by_index": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb200)), values: [Py(0x7fb463d18770)] }, expected_repr: "'mesh_by_index'", name: "literal['mesh_by_index']" }), validate_default: false, copy_default: false, name: "default[literal['mesh_by_index']]", undefined: Py(0x7fb465c3e3d0) }), frozen: false }], model_name: "OptionMeshByIndex", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a321f570), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "OptionMeshByIndex" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "index", lookup_key: Simple { key: "index", py_key: Py(0x7fb463e939f0), path: LookupPath([S("index", Py(0x7fb463e93ab0))]) }, name_py: Py(0x7fb467be0cc0), validator: Int(IntValidator { strict: false }), frozen: false }, Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fb463e93b10), path: LookupPath([S("type", Py(0x7fb463e93b40))]) }, name_py: Py(0x7fb467c22880), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fb46359b930)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"scene_by_index": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb280)), values: [Py(0x7fb46359b930)] }, expected_repr: "'scene_by_index'", name: "literal['scene_by_index']" }), validate_default: false, copy_default: false, name: "default[literal['scene_by_index']]", undefined: Py(0x7fb465c3e3d0) }), frozen: false }], model_name: "OptionSceneByIndex", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a320c240), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "OptionSceneByIndex" }), StrEnum(EnumValidator { phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>, class: Py(0x55d5a30d8f80), lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"mm": 4, "ft": 1, "yd": 5, "in": 2, "cm": 0, "m": 3}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb300)), values: [Py(0x7fb4635ef2f0), Py(0x7fb4635ef8f0), Py(0x7fb4635ef950), Py(0x7fb4635ef890), Py(0x7fb4635efa70), Py(0x7fb4635efad0)] }, missing: None, expected_repr: "'cm', 'ft', 'in', 'm', 'mm' or 'yd'", strict: false, class_repr: "UnitLength", name: "str-enum[UnitLength]" }), Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "type", lookup_key: Simple { key: "type", py_key: Py(0x7fb463e939c0), path: LookupPath([S("type", Py(0x7fb463e93ae0))]) }, name_py: Py(0x7fb467c22880), validator: WithDefault(WithDefaultValidator { default: Default(Py(0x7fb46359a0b0)), on_error: Raise, validator: Literal(LiteralValidator { lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"default_scene": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb2c0)), values: [Py(0x7fb46359a0b0)] }, expected_repr: "'default_scene'", name: "literal['default_scene']" }), validate_default: false, copy_default: false, name: "default[literal['default_scene']]", undefined: Py(0x7fb465c3e3d0) }), frozen: false }], model_name: "OptionDefaultScene", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a320b3d0), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "OptionDefaultScene" }), StrEnum(EnumValidator { phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>, class: Py(0x55d5a2f570b0), lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"z": 1, "y": 0}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb340)), values: [Py(0x7fb4635ef530), Py(0x7fb4635ef590)] }, missing: None, expected_repr: "'y' or 'z'", strict: false, class_repr: "Axis", name: "str-enum[Axis]" }), StrEnum(EnumValidator { phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>, class: Py(0x55d5a30d4290), lookup: LiteralLookup { expected_bool: None, expected_int: None, expected_str: Some({"positive": 0, "negative": 1}), expected_py_dict: None, expected_py_values: None, expected_py_primitives: Some(Py(0x7fb4633cb380)), values: [Py(0x7fb4635ef6b0), Py(0x7fb4635ef710)] }, missing: None, expected_repr: "'positive' or 'negative'", strict: false, class_repr: "Direction", name: "str-enum[Direction]" })], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_format: kittycad.models.file_export_format.FileExportFormat, output_format_options: Optional[pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]] = None, outputs: Optional[Dict[str, kittycad.models.base64data.Base64Data]] = None, src_format: kittycad.models.file_import_format.FileImportFormat, src_format_options: Optional[pydantic.root_model.RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]] = None, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_conversion'] = 'file_conversion', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'output_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False, default=None), 'outputs': FieldInfo(annotation=Union[Dict[str, Base64Data], NoneType], required=False, default=None), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'src_format_options': FieldInfo(annotation=Union[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]], NoneType], required=False, default=None), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_conversion'], required=False, default='file_conversion'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_format: FileExportFormat[source]
output_format_options: Optional[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]][source]
outputs: Optional[Dict[str, Base64Data]][source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
src_format_options: Optional[RootModel[Annotated[Union[OptionFbx, OptionGltf, OptionObj, OptionPly, OptionSldprt, OptionStep, OptionStl], FieldInfo(annotation=NoneType, required=True, discriminator='type')]]][source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_conversion'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionFileDensity(**data)[source][source]

A file density.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'density': typing.Optional[float], 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'material_mass': <class 'float'>, 'material_mass_unit': <enum 'UnitMass'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitDensity'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_density'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionFileDensity'>, 'config': {'title': 'OptionFileDensity'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileDensity'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileDensity:94376052870432', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'density': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'material_mass': {'metadata': {}, 'schema': {'default': 0.0, 'schema': {'type': 'float'}, 'type': 'default'}, 'type': 'model-field'}, 'material_mass_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitMass'>, 'members': [UnitMass.G, UnitMass.KG, UnitMass.LB], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_mass.UnitMass:94376052089856', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'output_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitDensity'>, 'members': [UnitDensity.LB_FT3, UnitDensity.KG_M3], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_density.UnitDensity:94376052268816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_density', 'schema': {'expected': ['file_density'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionFileDensity', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'density': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'material_mass': FieldInfo(annotation=float, required=False, default=0.0), 'material_mass_unit': FieldInfo(annotation=UnitMass, required=True), 'output_unit': FieldInfo(annotation=UnitDensity, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_density'], required=False, default='file_density'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a31b4d20,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb464090130,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_density",                                             },                                             expected_py: None,                                             name: "literal['file_density']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_mass": SerField {                         key_py: Py(                             0x00007fb463d3bb70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb4644e5870,                                         ),                                     ),                                     serializer: Float(                                         FloatSerializer {                                             inf_nan_mode: Null,                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "density": SerField {                         key_py: Py(                             0x00007fb464d79440,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_mass_unit": SerField {                         key_py: Py(                             0x00007fb463d3baf0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f6400,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fb464736af0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3121f10,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileDensity",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileDensity", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb4633b1c30,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb4633b1c70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb4633b1bb0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb4633b1bf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "density",                         lookup_key: Simple {                             key: "density",                             py_key: Py(                                 0x00007fb463e95ad0,                             ),                             path: LookupPath(                                 [                                     S(                                         "density",                                         Py(                                             0x00007fb463e95bc0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464d79440,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e95bf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e95c20,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e95c50,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e95c80,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633b1d00,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_mass",                         lookup_key: Simple {                             key: "material_mass",                             py_key: Py(                                 0x00007fb4633b1b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_mass",                                         Py(                                             0x00007fb4633b1b30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3bb70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb4644e5870,                                     ),                                 ),                                 on_error: Raise,                                 validator: Float(                                     FloatValidator {                                         strict: false,                                         allow_inf_nan: true,                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[float]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_mass_unit",                         lookup_key: Simple {                             key: "material_mass_unit",                             py_key: Py(                                 0x00007fb4633b1a70,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_mass_unit",                                         Py(                                             0x00007fb4633b1a30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3baf0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f6400,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "lb": 2,                                             "g": 0,                                             "kg": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633b1ac0,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c65d0,                                         ),                                         Py(                                             0x00007fb4635c6630,                                         ),                                         Py(                                             0x00007fb4635c6690,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'g', 'kg' or 'lb'",                                 strict: false,                                 class_repr: "UnitMass",                                 name: "str-enum[UnitMass]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fb4633b19b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fb4633b1970,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464736af0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3121f10,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "kg:m3": 1,                                             "lb:ft3": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633b1a00,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c64b0,                                         ),                                         Py(                                             0x00007fb4635c6510,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'lb:ft3' or 'kg:m3'",                                 strict: false,                                 class_repr: "UnitDensity",                                 name: "str-enum[UnitDensity]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb4633b18f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb4633b18b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "fbx": 0,                                             "ply": 3,                                             "stl": 6,                                             "gltf": 1,                                             "step": 5,                                             "sldprt": 4,                                             "obj": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633b1940,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb4633b1870,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb4633b1830,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e95cb0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e95ce0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "completed": 3,                                             "failed": 4,                                             "queued": 0,                                             "uploaded": 1,                                             "in_progress": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633b1800,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e95d10,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e95d40,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb464090130,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_density": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb4633b17c0,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb464090130,                                                 ),                                             ],                                         },                                         expected_repr: "'file_density'",                                         name: "literal['file_density']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_density']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633b1770,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633b1730,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e95d70,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e95da0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633b1d00,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileDensity",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a31b4d20,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileDensity",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, density: Optional[float] = None, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, material_mass: float = 0.0, material_mass_unit: kittycad.models.unit_mass.UnitMass, output_unit: kittycad.models.unit_density.UnitDensity, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_density'] = 'file_density', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
density: Optional[float][source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

material_mass: float[source]
material_mass_unit: UnitMass[source]
model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'density': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'material_mass': FieldInfo(annotation=float, required=False, default=0.0), 'material_mass_unit': FieldInfo(annotation=UnitMass, required=True), 'output_unit': FieldInfo(annotation=UnitDensity, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_density'], required=False, default='file_density'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_unit: UnitDensity[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_density'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionFileMass(**data)[source][source]

A file mass.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'mass': typing.Optional[float], 'material_density': <class 'float'>, 'material_density_unit': <enum 'UnitDensity'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitMass'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_mass'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionFileMass'>, 'config': {'title': 'OptionFileMass'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileMass'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileMass:94376052791856', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'mass': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'material_density': {'metadata': {}, 'schema': {'default': 0.0, 'schema': {'type': 'float'}, 'type': 'default'}, 'type': 'model-field'}, 'material_density_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitDensity'>, 'members': [UnitDensity.LB_FT3, UnitDensity.KG_M3], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_density.UnitDensity:94376052268816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'output_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitMass'>, 'members': [UnitMass.G, UnitMass.KG, UnitMass.LB], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_mass.UnitMass:94376052089856', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_mass', 'schema': {'expected': ['file_mass'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionFileMass', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'mass': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'material_density': FieldInfo(annotation=float, required=False, default=0.0), 'material_density_unit': FieldInfo(annotation=UnitDensity, required=True), 'output_unit': FieldInfo(annotation=UnitMass, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_mass'], required=False, default='file_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a31a1a30,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fb464736af0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f6400,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb4640937f0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_mass",                                             },                                             expected_py: None,                                             name: "literal['file_mass']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_density_unit": SerField {                         key_py: Py(                             0x00007fb4647377f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3121f10,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "mass": SerField {                         key_py: Py(                             0x00007fb464365140,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "material_density": SerField {                         key_py: Py(                             0x00007fb4647363f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb4644e5870,                                         ),                                     ),                                     serializer: Float(                                         FloatSerializer {                                             inf_nan_mode: Null,                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 14,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileMass",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileMass", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb463d7d230,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb463d7f3f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb463d7feb0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb463d7d570,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb4650c5b90,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb4675fd1d0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb4643381b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb464338a50,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633c3040,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "mass",                         lookup_key: Simple {                             key: "mass",                             py_key: Py(                                 0x00007fb464a0ed00,                             ),                             path: LookupPath(                                 [                                     S(                                         "mass",                                         Py(                                             0x00007fb463f89650,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464365140,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_density",                         lookup_key: Simple {                             key: "material_density",                             py_key: Py(                                 0x00007fb4633c8930,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_density",                                         Py(                                             0x00007fb4633c8030,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4647363f0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb4644e5870,                                     ),                                 ),                                 on_error: Raise,                                 validator: Float(                                     FloatValidator {                                         strict: false,                                         allow_inf_nan: true,                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[float]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "material_density_unit",                         lookup_key: Simple {                             key: "material_density_unit",                             py_key: Py(                                 0x00007fb4633c8130,                             ),                             path: LookupPath(                                 [                                     S(                                         "material_density_unit",                                         Py(                                             0x00007fb4633c81b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4647377f0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3121f10,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "kg:m3": 1,                                             "lb:ft3": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c8600,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c64b0,                                         ),                                         Py(                                             0x00007fb4635c6510,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'lb:ft3' or 'kg:m3'",                                 strict: false,                                 class_repr: "UnitDensity",                                 name: "str-enum[UnitDensity]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fb4633c8970,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fb4633c8230,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464736af0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f6400,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "lb": 2,                                             "g": 0,                                             "kg": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c8580,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c65d0,                                         ),                                         Py(                                             0x00007fb4635c6630,                                         ),                                         Py(                                             0x00007fb4635c6690,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'g', 'kg' or 'lb'",                                 strict: false,                                 class_repr: "UnitMass",                                 name: "str-enum[UnitMass]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb4633c8170,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb4633c80f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "ply": 3,                                             "obj": 2,                                             "sldprt": 4,                                             "step": 5,                                             "stl": 6,                                             "gltf": 1,                                             "fbx": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c8840,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb4633c8070,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb4633c82b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463f8b1b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e93600,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "completed": 3,                                             "queued": 0,                                             "uploaded": 1,                                             "failed": 4,                                             "in_progress": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c8740,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e93480,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e93540,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb4640937f0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_mass": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb4633c8880,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb4640937f0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_mass'",                                         name: "literal['file_mass']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_mass']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633c89b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633c8370,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e933c0,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e93720,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633c3040,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileMass",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a31a1a30,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileMass",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, mass: Optional[float] = None, material_density: float = 0.0, material_density_unit: kittycad.models.unit_density.UnitDensity, output_unit: kittycad.models.unit_mass.UnitMass, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_mass'] = 'file_mass', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

mass: Optional[float][source]
material_density: float[source]
material_density_unit: UnitDensity[source]
model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'mass': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'material_density': FieldInfo(annotation=float, required=False, default=0.0), 'material_density_unit': FieldInfo(annotation=UnitDensity, required=True), 'output_unit': FieldInfo(annotation=UnitMass, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_mass'], required=False, default='file_mass'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_unit: UnitMass[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_mass'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionFileSurfaceArea(**data)[source][source]

A file surface area.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitArea'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'surface_area': typing.Optional[float], 'type': typing.Literal['file_surface_area'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionFileSurfaceArea'>, 'config': {'title': 'OptionFileSurfaceArea'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileSurfaceArea'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileSurfaceArea:94376050745840', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitArea'>, 'members': [UnitArea.CM2, UnitArea.DM2, UnitArea.FT2, UnitArea.IN2, UnitArea.KM2, UnitArea.M2, UnitArea.MM2, UnitArea.YD2], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_area.UnitArea:94376052263056', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'surface_area': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_surface_area', 'schema': {'expected': ['file_surface_area'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionFileSurfaceArea', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitArea, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'surface_area': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'type': FieldInfo(annotation=Literal['file_surface_area'], required=False, default='file_surface_area'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a2fae1f0,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fb464736af0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3120890,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "surface_area": SerField {                         key_py: Py(                             0x00007fb463f4b7b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb4640906b0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_surface_area",                                             },                                             expected_py: None,                                             name: "literal['file_surface_area']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileSurfaceArea",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileSurfaceArea", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb465cdc7b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb4633abf70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb4633abef0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb4633abf30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e95800,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e950e0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e95140,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e950b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633b0040,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fb4633abe30,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fb4633abdf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464736af0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3120890,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "in2": 3,                                             "cm2": 0,                                             "ft2": 2,                                             "yd2": 7,                                             "dm2": 1,                                             "km2": 4,                                             "m2": 5,                                             "mm2": 6,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633abe80,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c6150,                                         ),                                         Py(                                             0x00007fb4635c61b0,                                         ),                                         Py(                                             0x00007fb4635c6210,                                         ),                                         Py(                                             0x00007fb4635c6270,                                         ),                                         Py(                                             0x00007fb4635c62d0,                                         ),                                         Py(                                             0x00007fb4635c6330,                                         ),                                         Py(                                             0x00007fb4635c6390,                                         ),                                         Py(                                             0x00007fb4635c63f0,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'cm2', 'dm2', 'ft2', 'in2', 'km2', 'm2', 'mm2' or 'yd2'",                                 strict: false,                                 class_repr: "UnitArea",                                 name: "str-enum[UnitArea]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb4633abd70,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb4633abd30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "stl": 6,                                             "gltf": 1,                                             "ply": 3,                                             "step": 5,                                             "fbx": 0,                                             "sldprt": 4,                                             "obj": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633abdc0,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb4633abcf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb4633abcb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e952c0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e95260,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "in_progress": 2,                                             "queued": 0,                                             "completed": 3,                                             "failed": 4,                                             "uploaded": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633abc80,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "surface_area",                         lookup_key: Simple {                             key: "surface_area",                             py_key: Py(                                 0x00007fb4633abc30,                             ),                             path: LookupPath(                                 [                                     S(                                         "surface_area",                                         Py(                                             0x00007fb4633abbf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f4b7b0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e94fc0,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e95230,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb4640906b0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_surface_area": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb4633abbc0,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb4640906b0,                                                 ),                                             ],                                         },                                         expected_repr: "'file_surface_area'",                                         name: "literal['file_surface_area']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_surface_area']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633abb70,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633abb30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e95170,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e95200,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633b0040,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileSurfaceArea",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a2fae1f0,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileSurfaceArea",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_area.UnitArea, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, surface_area: Optional[float] = None, type: Literal['file_surface_area'] = 'file_surface_area', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitArea, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'surface_area': FieldInfo(annotation=Union[float, NoneType], required=False, default=None), 'type': FieldInfo(annotation=Literal['file_surface_area'], required=False, default='file_surface_area'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_unit: UnitArea[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
surface_area: Optional[float][source]
type: Literal['file_surface_area'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionFileVolume(**data)[source][source]

A file volume.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'output_unit': <enum 'UnitVolume'>, 'src_format': <enum 'FileImportFormat'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['file_volume'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>, 'volume': typing.Optional[float]}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionFileVolume'>, 'config': {'title': 'OptionFileVolume'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionFileVolume'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionFileVolume:94376052834448', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'output_unit': {'metadata': {}, 'schema': {'cls': <enum 'UnitVolume'>, 'members': [UnitVolume.CM3, UnitVolume.FT3, UnitVolume.IN3, UnitVolume.M3, UnitVolume.YD3, UnitVolume.USFLOZ, UnitVolume.USGAL, UnitVolume.L, UnitVolume.ML], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.unit_volume.UnitVolume:94376052276608', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'src_format': {'metadata': {}, 'schema': {'cls': <enum 'FileImportFormat'>, 'members': [FileImportFormat.FBX, FileImportFormat.GLTF, FileImportFormat.OBJ, FileImportFormat.PLY, FileImportFormat.SLDPRT, FileImportFormat.STEP, FileImportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_import_format.FileImportFormat:94376050384816', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'file_volume', 'schema': {'expected': ['file_volume'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'volume': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'float'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}}, 'model_name': 'OptionFileVolume', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitVolume, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_volume'], required=False, default='file_volume'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True), 'volume': FieldInfo(annotation=Union[float, NoneType], required=False, default=None)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a31ac090,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb464090830,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "file_volume",                                             },                                             expected_py: None,                                             name: "literal['file_volume']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "output_unit": SerField {                         key_py: Py(                             0x00007fb464736af0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3123d80,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "src_format": SerField {                         key_py: Py(                             0x00007fb4636042b0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a2f55fb0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "volume": SerField {                         key_py: Py(                             0x00007fb467c22ad8,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Float(                                                 FloatSerializer {                                                     inf_nan_mode: Null,                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 12,             },         ),         has_extra: false,         root_model: false,         name: "OptionFileVolume",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionFileVolume", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb4633c16b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb4633c16f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb4633c1630,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb4633c1670,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e94d50,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e95410,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e95440,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e95470,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633c1780,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_unit",                         lookup_key: Simple {                             key: "output_unit",                             py_key: Py(                                 0x00007fb4633c15b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_unit",                                         Py(                                             0x00007fb4633c1570,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464736af0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3123d80,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "l": 7,                                             "usfloz": 5,                                             "ml": 8,                                             "cm3": 0,                                             "m3": 3,                                             "usgal": 6,                                             "in3": 2,                                             "yd3": 4,                                             "ft3": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c1600,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c6750,                                         ),                                         Py(                                             0x00007fb4635c67b0,                                         ),                                         Py(                                             0x00007fb4635c6810,                                         ),                                         Py(                                             0x00007fb4635c6870,                                         ),                                         Py(                                             0x00007fb4635c68d0,                                         ),                                         Py(                                             0x00007fb4635c6930,                                         ),                                         Py(                                             0x00007fb4635c6990,                                         ),                                         Py(                                             0x00007fb4635c69f0,                                         ),                                         Py(                                             0x00007fb4635c6a50,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'cm3', 'ft3', 'in3', 'm3', 'yd3', 'usfloz', 'usgal', 'l' or 'ml'",                                 strict: false,                                 class_repr: "UnitVolume",                                 name: "str-enum[UnitVolume]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "src_format",                         lookup_key: Simple {                             key: "src_format",                             py_key: Py(                                 0x00007fb4633c14f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "src_format",                                         Py(                                             0x00007fb4633c14b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb4636042b0,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a2f55fb0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "fbx": 0,                                             "step": 5,                                             "sldprt": 4,                                             "gltf": 1,                                             "obj": 2,                                             "ply": 3,                                             "stl": 6,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c1540,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eeed0,                                         ),                                         Py(                                             0x00007fb4635eef30,                                         ),                                         Py(                                             0x00007fb4635eef90,                                         ),                                         Py(                                             0x00007fb4635eeff0,                                         ),                                         Py(                                             0x00007fb4635ef050,                                         ),                                         Py(                                             0x00007fb4635ef0b0,                                         ),                                         Py(                                             0x00007fb4635ef110,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'gltf', 'obj', 'ply', 'sldprt', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileImportFormat",                                 name: "str-enum[FileImportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb4633c1470,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb4633c1430,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e954a0,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e954d0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "queued": 0,                                             "in_progress": 2,                                             "completed": 3,                                             "failed": 4,                                             "uploaded": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb4633c1400,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e95500,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e95530,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb464090830,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "file_volume": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb4633c13c0,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb464090830,                                                 ),                                             ],                                         },                                         expected_repr: "'file_volume'",                                         name: "literal['file_volume']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['file_volume']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633c1370,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633c1330,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e95560,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e95590,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb4633c1780,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "volume",                         lookup_key: Simple {                             key: "volume",                             py_key: Py(                                 0x00007fb463e955c0,                             ),                             path: LookupPath(                                 [                                     S(                                         "volume",                                         Py(                                             0x00007fb463e955f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22ad8,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Float(                                             FloatValidator {                                                 strict: false,                                                 allow_inf_nan: true,                                             },                                         ),                                         name: "nullable[float]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[float]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionFileVolume",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a31ac090,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionFileVolume",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, id: kittycad.models.uuid.Uuid, output_unit: kittycad.models.unit_volume.UnitVolume, src_format: kittycad.models.file_import_format.FileImportFormat, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['file_volume'] = 'file_volume', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid, volume: Optional[float] = None) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'output_unit': FieldInfo(annotation=UnitVolume, required=True), 'src_format': FieldInfo(annotation=FileImportFormat, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['file_volume'], required=False, default='file_volume'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True), 'volume': FieldInfo(annotation=Union[float, NoneType], required=False, default=None)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

output_unit: UnitVolume[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

src_format: FileImportFormat[source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['file_volume'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

volume: Optional[float][source]
class kittycad.models.async_api_call_output.OptionTextToCad(**data)[source][source]

Text to CAD.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'code': typing.Optional[str], 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'feedback': typing.Optional[kittycad.models.ml_feedback.MlFeedback], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model': <enum 'TextToCadModel'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'model_version': <class 'str'>, 'output_format': <enum 'FileExportFormat'>, 'outputs': typing.Optional[typing.Dict[str, kittycad.models.base64data.Base64Data]], 'prompt': <class 'str'>, 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['text_to_cad'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'cls': <class 'kittycad.models.async_api_call_output.OptionTextToCad'>, 'config': {'title': 'OptionTextToCad'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionTextToCad'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionTextToCad:94376050779408', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'code': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'feedback': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'cls': <enum 'MlFeedback'>, 'members': [MlFeedback.THUMBS_UP, MlFeedback.THUMBS_DOWN, MlFeedback.ACCEPTED, MlFeedback.REJECTED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.ml_feedback.MlFeedback:94376053247728', 'sub_type': 'str', 'type': 'enum'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'model': {'metadata': {}, 'schema': {'cls': <enum 'TextToCadModel'>, 'members': [TextToCadModel.CAD, TextToCadModel.KCL, TextToCadModel.KCL_ITERATION], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.text_to_cad_model.TextToCadModel:94376052262064', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'model_version': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'output_format': {'metadata': {}, 'schema': {'cls': <enum 'FileExportFormat'>, 'members': [FileExportFormat.FBX, FileExportFormat.GLB, FileExportFormat.GLTF, FileExportFormat.OBJ, FileExportFormat.PLY, FileExportFormat.STEP, FileExportFormat.STL], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.file_export_format.FileExportFormat:94376053319792', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'outputs': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'keys_schema': {'type': 'str'}, 'type': 'dict', 'values_schema': {'function': {'function': <bound method Base64Data.validate of <class 'kittycad.models.base64data.Base64Data'>>, 'type': 'no-info'}, 'schema': {'choices': [{'type': 'str'}, {'type': 'bytes'}], 'type': 'union'}, 'serialization': {'function': <bound method Base64Data.serialize of <class 'kittycad.models.base64data.Base64Data'>>, 'type': 'function-plain'}, 'type': 'function-after'}}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'prompt': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'text_to_cad', 'schema': {'expected': ['text_to_cad'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionTextToCad', 'type': 'model-fields'}, 'type': 'model'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'code': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'feedback': FieldInfo(annotation=Union[MlFeedback, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'model': FieldInfo(annotation=TextToCadModel, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'outputs': FieldInfo(annotation=Union[Dict[str, Base64Data], NoneType], required=False, default=None), 'prompt': FieldInfo(annotation=str, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad'], required=False, default='text_to_cad'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a2fb6510,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb463f4b8b0,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "text_to_cad",                                             },                                             expected_py: None,                                             name: "literal['text_to_cad']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "outputs": SerField {                         key_py: Py(                             0x00007fb463f88930,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Dict(                                                 DictSerializer {                                                     key_serializer: Str(                                                         StrSerializer,                                                     ),                                                     value_serializer: Function(                                                         FunctionPlainSerializer {                                                             func: Py(                                                                 0x00007fb4633a9180,                                                             ),                                                             name: "plain_function[serialize]",                                                             function_name: "serialize",                                                             return_serializer: Any(                                                                 AnySerializer,                                                             ),                                                             fallback_serializer: None,                                                             when_used: Always,                                                             is_field_serializer: false,                                                             info_arg: false,                                                         },                                                     ),                                                     filter: SchemaFilter {                                                         include: None,                                                         exclude: None,                                                     },                                                     name: "dict[str, plain_function[serialize]]",                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "prompt": SerField {                         key_py: Py(                             0x00007fb467b96ba0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "model": SerField {                         key_py: Py(                             0x00007fb464d58690,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a31204b0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "code": SerField {                         key_py: Py(                             0x00007fb467c1dcf8,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "feedback": SerField {                         key_py: Py(                             0x00007fb463d3b570,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Enum(                                                 EnumSerializer {                                                     class: Py(                                                         0x000055d5a3210ef0,                                                     ),                                                     serializer: Some(                                                         Str(                                                             StrSerializer,                                                         ),                                                     ),                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "model_version": SerField {                         key_py: Py(                             0x00007fb463d3b4f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "output_format": SerField {                         key_py: Py(                             0x00007fb463f48370,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a3222870,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 16,             },         ),         has_extra: false,         root_model: false,         name: "OptionTextToCad",     }, ), definitions=[])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionTextToCad", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "code",                         lookup_key: Simple {                             key: "code",                             py_key: Py(                                 0x00007fb463e95950,                             ),                             path: LookupPath(                                 [                                     S(                                         "code",                                         Py(                                             0x00007fb463e958f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1dcf8,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb46339f4f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb46339f530,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb46339f470,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb46339f4b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e95740,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e95890,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "feedback",                         lookup_key: Simple {                             key: "feedback",                             py_key: Py(                                 0x00007fb46339f3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "feedback",                                         Py(                                             0x00007fb46339f370,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3b570,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: StrEnum(                                             EnumValidator {                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                 class: Py(                                                     0x000055d5a3210ef0,                                                 ),                                                 lookup: LiteralLookup {                                                     expected_bool: None,                                                     expected_int: None,                                                     expected_str: Some(                                                         {                                                             "thumbs_down": 1,                                                             "accepted": 2,                                                             "thumbs_up": 0,                                                             "rejected": 3,                                                         },                                                     ),                                                     expected_py_dict: None,                                                     expected_py_values: None,                                                     expected_py_primitives: Some(                                                         Py(                                                             0x00007fb46339f400,                                                         ),                                                     ),                                                     values: [                                                         Py(                                                             0x00007fb4635c4530,                                                         ),                                                         Py(                                                             0x00007fb4635c4590,                                                         ),                                                         Py(                                                             0x00007fb4635c45f0,                                                         ),                                                         Py(                                                             0x00007fb4635c4650,                                                         ),                                                     ],                                                 },                                                 missing: None,                                                 expected_repr: "'thumbs_up', 'thumbs_down', 'accepted' or 'rejected'",                                                 strict: false,                                                 class_repr: "MlFeedback",                                                 name: "str-enum[MlFeedback]",                                             },                                         ),                                         name: "nullable[str-enum[MlFeedback]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str-enum[MlFeedback]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e95920,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e958c0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb46339f5c0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "model",                         lookup_key: Simple {                             key: "model",                             py_key: Py(                                 0x00007fb463e95e60,                             ),                             path: LookupPath(                                 [                                     S(                                         "model",                                         Py(                                             0x00007fb463e95830,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464d58690,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a31204b0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "kcl": 1,                                             "kcl_iteration": 2,                                             "cad": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb46339f340,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c4770,                                         ),                                         Py(                                             0x00007fb4635c5df0,                                         ),                                         Py(                                             0x00007fb4635c6090,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'cad', 'kcl' or 'kcl_iteration'",                                 strict: false,                                 class_repr: "TextToCadModel",                                 name: "str-enum[TextToCadModel]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "model_version",                         lookup_key: Simple {                             key: "model_version",                             py_key: Py(                                 0x00007fb46339f2f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "model_version",                                         Py(                                             0x00007fb46339f2b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3b4f0,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "output_format",                         lookup_key: Simple {                             key: "output_format",                             py_key: Py(                                 0x00007fb46339f230,                             ),                             path: LookupPath(                                 [                                     S(                                         "output_format",                                         Py(                                             0x00007fb46339f1f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f48370,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a3222870,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "stl": 6,                                             "obj": 3,                                             "glb": 1,                                             "fbx": 0,                                             "ply": 4,                                             "gltf": 2,                                             "step": 5,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb46339f280,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635eebd0,                                         ),                                         Py(                                             0x00007fb4635eec30,                                         ),                                         Py(                                             0x00007fb4635eec90,                                         ),                                         Py(                                             0x00007fb4635eecf0,                                         ),                                         Py(                                             0x00007fb4635eed50,                                         ),                                         Py(                                             0x00007fb4635eedb0,                                         ),                                         Py(                                             0x00007fb4635eee10,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'fbx', 'glb', 'gltf', 'obj', 'ply', 'step' or 'stl'",                                 strict: false,                                 class_repr: "FileExportFormat",                                 name: "str-enum[FileExportFormat]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "outputs",                         lookup_key: Simple {                             key: "outputs",                             py_key: Py(                                 0x00007fb463e961c0,                             ),                             path: LookupPath(                                 [                                     S(                                         "outputs",                                         Py(                                             0x00007fb463e961f0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f88930,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Dict(                                             DictValidator {                                                 strict: false,                                                 key_validator: Str(                                                     StrValidator {                                                         strict: false,                                                         coerce_numbers_to_str: false,                                                     },                                                 ),                                                 value_validator: FunctionAfter(                                                     FunctionAfterValidator {                                                         validator: Union(                                                             UnionValidator {                                                                 mode: Smart,                                                                 choices: [                                                                     (                                                                         Str(                                                                             StrValidator {                                                                                 strict: false,                                                                                 coerce_numbers_to_str: false,                                                                             },                                                                         ),                                                                         None,                                                                     ),                                                                     (                                                                         Bytes(                                                                             BytesValidator {                                                                                 strict: false,                                                                                 bytes_mode: ValBytesMode {                                                                                     ser: Utf8,                                                                                 },                                                                             },                                                                         ),                                                                         None,                                                                     ),                                                                 ],                                                                 custom_error: None,                                                                 strict: false,                                                                 name: "union[str,bytes]",                                                             },                                                         ),                                                         func: Py(                                                             0x00007fb4633a9300,                                                         ),                                                         config: Py(                                                             0x00007fb46339f5c0,                                                         ),                                                         name: "function-after[validate(), union[str,bytes]]",                                                         field_name: None,                                                         info_arg: false,                                                     },                                                 ),                                                 min_length: None,                                                 max_length: None,                                                 name: "dict[str,function-after[validate(), union[str,bytes]]]",                                             },                                         ),                                         name: "nullable[dict[str,function-after[validate(), union[str,bytes]]]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[dict[str,function-after[validate(), union[str,bytes]]]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "prompt",                         lookup_key: Simple {                             key: "prompt",                             py_key: Py(                                 0x00007fb463e96130,                             ),                             path: LookupPath(                                 [                                     S(                                         "prompt",                                         Py(                                             0x00007fb463e96160,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b96ba0,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb46339f1b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb46339f170,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e96190,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e96400,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "failed": 4,                                             "queued": 0,                                             "in_progress": 2,                                             "completed": 3,                                             "uploaded": 1,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb46339f140,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e96250,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e96340,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb463f4b8b0,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "text_to_cad": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb46339f100,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb463f4b8b0,                                                 ),                                             ],                                         },                                         expected_repr: "'text_to_cad'",                                         name: "literal['text_to_cad']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['text_to_cad']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb46339f0b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb46339f070,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e96460,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e96490,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb46339f5c0,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionTextToCad",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a2fb6510,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionTextToCad",     }, ), definitions=[], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, code: Optional[str] = None, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, feedback: Optional[kittycad.models.ml_feedback.MlFeedback] = None, id: kittycad.models.uuid.Uuid, model: kittycad.models.text_to_cad_model.TextToCadModel, model_version: str, output_format: kittycad.models.file_export_format.FileExportFormat, outputs: Optional[Dict[str, kittycad.models.base64data.Base64Data]] = None, prompt: str, started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['text_to_cad'] = 'text_to_cad', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

code: Optional[str][source]
completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
feedback: Optional[MlFeedback][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model: TextToCadModel[source]
model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'code': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'feedback': FieldInfo(annotation=Union[MlFeedback, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'model': FieldInfo(annotation=TextToCadModel, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'output_format': FieldInfo(annotation=FileExportFormat, required=True), 'outputs': FieldInfo(annotation=Union[Dict[str, Base64Data], NoneType], required=False, default=None), 'prompt': FieldInfo(annotation=str, required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad'], required=False, default='text_to_cad'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

model_version: str[source]
output_format: FileExportFormat[source]
outputs: Optional[Dict[str, Base64Data]][source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

prompt: str[source]
classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['text_to_cad'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self

class kittycad.models.async_api_call_output.OptionTextToCadIteration(**data)[source][source]

Text to CAD iteration.

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__abstractmethods__ = frozenset({})[source]
__annotations__ = {'__class_vars__': 'ClassVar[set[str]]', '__private_attributes__': 'ClassVar[Dict[str, ModelPrivateAttr]]', '__pydantic_complete__': 'ClassVar[bool]', '__pydantic_computed_fields__': 'ClassVar[Dict[str, ComputedFieldInfo]]', '__pydantic_core_schema__': 'ClassVar[CoreSchema]', '__pydantic_custom_init__': 'ClassVar[bool]', '__pydantic_decorators__': 'ClassVar[_decorators.DecoratorInfos]', '__pydantic_extra__': 'dict[str, Any] | None', '__pydantic_fields__': 'ClassVar[Dict[str, FieldInfo]]', '__pydantic_fields_set__': 'set[str]', '__pydantic_generic_metadata__': 'ClassVar[_generics.PydanticGenericMetadata]', '__pydantic_parent_namespace__': 'ClassVar[Dict[str, Any] | None]', '__pydantic_post_init__': "ClassVar[None | Literal['model_post_init']]", '__pydantic_private__': 'dict[str, Any] | None', '__pydantic_root_model__': 'ClassVar[bool]', '__pydantic_serializer__': 'ClassVar[SchemaSerializer]', '__pydantic_validator__': 'ClassVar[SchemaValidator | PluggableSchemaValidator]', '__signature__': 'ClassVar[Signature]', 'code': <class 'str'>, 'completed_at': typing.Optional[datetime.datetime], 'created_at': <class 'datetime.datetime'>, 'error': typing.Optional[str], 'feedback': typing.Optional[kittycad.models.ml_feedback.MlFeedback], 'id': <class 'kittycad.models.uuid.Uuid'>, 'model': <enum 'TextToCadModel'>, 'model_computed_fields': 'ClassVar[dict[str, ComputedFieldInfo]]', 'model_config': 'ClassVar[ConfigDict]', 'model_fields': 'ClassVar[dict[str, FieldInfo]]', 'model_version': <class 'str'>, 'original_source_code': <class 'str'>, 'prompt': typing.Optional[str], 'source_ranges': typing.List[kittycad.models.source_range_prompt.SourceRangePrompt], 'started_at': typing.Optional[datetime.datetime], 'status': <enum 'ApiCallStatus'>, 'type': typing.Literal['text_to_cad_iteration'], 'updated_at': <class 'datetime.datetime'>, 'user_id': <class 'kittycad.models.uuid.Uuid'>}[source]
classmethod __class_getitem__(typevar_values)[source]
Return type:

type[BaseModel] | PydanticRecursiveRef

__class_vars__: ClassVar[set[str]] = {}[source]

The names of the class variables defined on the model.

__copy__()[source]

Returns a shallow copy of the model.

Return type:

Self

__deepcopy__(memo=None)[source]

Returns a deep copy of the model.

Return type:

Self

__delattr__(item)[source]

Implement delattr(self, name).

Return type:

Any

__dict__[source]
__eq__(other)[source]

Return self==value.

Return type:

bool

property __fields_set__: set[str][source]
classmethod __get_pydantic_core_schema__(source, handler, /)[source]

Hook into generating the model’s CoreSchema.

Parameters:
  • source (type[BaseModel]) – The class we are generating a schema for. This will generally be the same as the cls argument if this is a classmethod.

  • handler (GetCoreSchemaHandler) – A callable that calls into Pydantic’s internal CoreSchema generation logic.

Return type:

Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]

Returns:

A pydantic-core CoreSchema.

classmethod __get_pydantic_json_schema__(core_schema, handler, /)[source]

Hook into generating the model’s JSON schema.

Parameters:
  • core_schema (Union[InvalidSchema, AnySchema, NoneSchema, BoolSchema, IntSchema, FloatSchema, DecimalSchema, StringSchema, BytesSchema, DateSchema, TimeSchema, DatetimeSchema, TimedeltaSchema, LiteralSchema, EnumSchema, IsInstanceSchema, IsSubclassSchema, CallableSchema, ListSchema, TupleSchema, SetSchema, FrozenSetSchema, GeneratorSchema, DictSchema, AfterValidatorFunctionSchema, BeforeValidatorFunctionSchema, WrapValidatorFunctionSchema, PlainValidatorFunctionSchema, WithDefaultSchema, NullableSchema, UnionSchema, TaggedUnionSchema, ChainSchema, LaxOrStrictSchema, JsonOrPythonSchema, TypedDictSchema, ModelFieldsSchema, ModelSchema, DataclassArgsSchema, DataclassSchema, ArgumentsSchema, CallSchema, CustomErrorSchema, JsonSchema, UrlSchema, MultiHostUrlSchema, DefinitionsSchema, DefinitionReferenceSchema, UuidSchema, ComplexSchema]) – A pydantic-core CoreSchema. You can ignore this argument and call the handler with a new CoreSchema, wrap this CoreSchema ({'type': 'nullable', 'schema': current_schema}), or just call the handler with the original schema.

  • handler (GetJsonSchemaHandler) – Call into Pydantic’s internal JSON schema generation. This will raise a pydantic.errors.PydanticInvalidForJsonSchema if JSON schema generation fails. Since this gets called by BaseModel.model_json_schema you can override the schema_generator argument to that function to change JSON schema generation globally for a type.

Return type:

Dict[str, Any]

Returns:

A JSON schema, as a Python object.

__getattr__(item)[source]
Return type:

Any

__getstate__()[source]

Helper for pickle.

Return type:

dict[Any, Any]

__hash__ = None[source]
__init__(**data)[source]

Create a new model by parsing and validating input data from keyword arguments.

Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.

self is explicitly positional-only to allow self as a field name.

__iter__()[source]

So dict(model) works.

Return type:

Generator[Tuple[str, Any], None, None]

__module__ = 'kittycad.models.async_api_call_output'[source]
__pretty__(fmt, **kwargs)[source]

Used by devtools (https://python-devtools.helpmanual.io/) to pretty print objects.

Return type:

Generator[Any, None, None]

__private_attributes__: ClassVar[Dict[str, ModelPrivateAttr]] = {}[source]

Metadata about the private attributes of the model.

__pydantic_complete__: ClassVar[bool] = True[source]

Whether model building is completed, or if there are still undefined fields.

__pydantic_computed_fields__: ClassVar[Dict[str, ComputedFieldInfo]] = {}[source]

A dictionary of computed field names and their corresponding [ComputedFieldInfo][pydantic.fields.ComputedFieldInfo] objects.

__pydantic_core_schema__: ClassVar[CoreSchema] = {'definitions': [{'cls': <class 'kittycad.models.source_position.SourcePosition'>, 'config': {'title': 'SourcePosition'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.source_position.SourcePosition'>>]}, 'ref': 'kittycad.models.source_position.SourcePosition:94376052702688', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'column': {'metadata': {}, 'schema': {'type': 'int'}, 'type': 'model-field'}, 'line': {'metadata': {}, 'schema': {'type': 'int'}, 'type': 'model-field'}}, 'model_name': 'SourcePosition', 'type': 'model-fields'}, 'type': 'model'}], 'schema': {'cls': <class 'kittycad.models.async_api_call_output.OptionTextToCadIteration'>, 'config': {'title': 'OptionTextToCadIteration'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.async_api_call_output.OptionTextToCadIteration'>>]}, 'ref': 'kittycad.models.async_api_call_output.OptionTextToCadIteration:94376050834480', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'code': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'completed_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'created_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'error': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'feedback': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'cls': <enum 'MlFeedback'>, 'members': [MlFeedback.THUMBS_UP, MlFeedback.THUMBS_DOWN, MlFeedback.ACCEPTED, MlFeedback.REJECTED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.ml_feedback.MlFeedback:94376053247728', 'sub_type': 'str', 'type': 'enum'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}, 'model': {'metadata': {}, 'schema': {'cls': <enum 'TextToCadModel'>, 'members': [TextToCadModel.CAD, TextToCadModel.KCL, TextToCadModel.KCL_ITERATION], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.text_to_cad_model.TextToCadModel:94376052262064', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'model_version': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'original_source_code': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'prompt': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'type': 'str'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'source_ranges': {'metadata': {}, 'schema': {'items_schema': {'cls': <class 'kittycad.models.source_range_prompt.SourceRangePrompt'>, 'config': {'title': 'SourceRangePrompt'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.source_range_prompt.SourceRangePrompt'>>]}, 'ref': 'kittycad.models.source_range_prompt.SourceRangePrompt:94376052246208', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'prompt': {'metadata': {}, 'schema': {'type': 'str'}, 'type': 'model-field'}, 'range': {'metadata': {}, 'schema': {'cls': <class 'kittycad.models.source_range.SourceRange'>, 'config': {'title': 'SourceRange'}, 'custom_init': False, 'metadata': {'pydantic_js_functions': [<bound method BaseModel.__get_pydantic_json_schema__ of <class 'kittycad.models.source_range.SourceRange'>>]}, 'ref': 'kittycad.models.source_range.SourceRange:94376052234928', 'root_model': False, 'schema': {'computed_fields': [], 'fields': {'end': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.source_position.SourcePosition:94376052702688', 'type': 'definition-ref'}, 'type': 'model-field'}, 'start': {'metadata': {}, 'schema': {'schema_ref': 'kittycad.models.source_position.SourcePosition:94376052702688', 'type': 'definition-ref'}, 'type': 'model-field'}}, 'model_name': 'SourceRange', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'model-field'}}, 'model_name': 'SourceRangePrompt', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'list'}, 'type': 'model-field'}, 'started_at': {'metadata': {}, 'schema': {'default': None, 'schema': {'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'nullable'}, 'type': 'default'}, 'type': 'model-field'}, 'status': {'metadata': {}, 'schema': {'cls': <enum 'ApiCallStatus'>, 'members': [ApiCallStatus.QUEUED, ApiCallStatus.UPLOADED, ApiCallStatus.IN_PROGRESS, ApiCallStatus.COMPLETED, ApiCallStatus.FAILED], 'metadata': {'pydantic_js_functions': [<function GenerateSchema._enum_schema.<locals>.get_json_schema>]}, 'ref': 'kittycad.models.api_call_status.ApiCallStatus:94376052087296', 'sub_type': 'str', 'type': 'enum'}, 'type': 'model-field'}, 'type': {'metadata': {}, 'schema': {'default': 'text_to_cad_iteration', 'schema': {'expected': ['text_to_cad_iteration'], 'type': 'literal'}, 'type': 'default'}, 'type': 'model-field'}, 'updated_at': {'metadata': {}, 'schema': {'microseconds_precision': 'truncate', 'type': 'datetime'}, 'type': 'model-field'}, 'user_id': {'metadata': {}, 'schema': {'function': {'function': <class 'kittycad.models.uuid.Uuid'>, 'type': 'no-info'}, 'schema': {'type': 'str'}, 'type': 'function-after'}, 'type': 'model-field'}}, 'model_name': 'OptionTextToCadIteration', 'type': 'model-fields'}, 'type': 'model'}, 'type': 'definitions'}[source]

The core schema of the model.

__pydantic_custom_init__: ClassVar[bool] = False[source]

Whether the model has a custom __init__ method.

__pydantic_decorators__: ClassVar[_decorators.DecoratorInfos] = DecoratorInfos(validators={}, field_validators={}, root_validators={}, field_serializers={}, model_serializers={}, model_validators={}, computed_fields={})[source]

Metadata containing the decorators defined on the model. This replaces Model.__validators__ and Model.__root_validators__ from Pydantic V1.

__pydantic_extra__: dict[str, Any] | None[source]

A dictionary containing extra values, if [extra][pydantic.config.ConfigDict.extra] is set to 'allow'.

__pydantic_fields__: ClassVar[Dict[str, FieldInfo]] = {'code': FieldInfo(annotation=str, required=True), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'feedback': FieldInfo(annotation=Union[MlFeedback, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'model': FieldInfo(annotation=TextToCadModel, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'original_source_code': FieldInfo(annotation=str, required=True), 'prompt': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'source_ranges': FieldInfo(annotation=List[SourceRangePrompt], required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad_iteration'], required=False, default='text_to_cad_iteration'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]

A dictionary of field names and their corresponding [FieldInfo][pydantic.fields.FieldInfo] objects. This replaces Model.__fields__ from Pydantic V1.

__pydantic_fields_set__: set[str][source]

The names of fields explicitly set during instantiation.

__pydantic_generic_metadata__: ClassVar[_generics.PydanticGenericMetadata] = {'args': (), 'origin': None, 'parameters': ()}[source]

Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these.

classmethod __pydantic_init_subclass__(**kwargs)[source]

This is intended to behave just like __init_subclass__, but is called by ModelMetaclass only after the class is actually fully initialized. In particular, attributes like model_fields will be present when this is called.

This is necessary because __init_subclass__ will always be called by type.__new__, and it would require a prohibitively large refactor to the ModelMetaclass to ensure that type.__new__ was called in such a manner that the class would already be sufficiently initialized.

This will receive the same kwargs that would be passed to the standard __init_subclass__, namely, any kwargs passed to the class definition that aren’t used internally by pydantic.

Parameters:

**kwargs (Any) – Any keyword arguments passed to the class definition that aren’t used internally by pydantic.

Return type:

None

__pydantic_parent_namespace__: ClassVar[Dict[str, Any] | None] = None[source]

Parent namespace of the model, used for automatic rebuilding of models.

__pydantic_post_init__: ClassVar[None | Literal['model_post_init']] = None[source]

The name of the post-init method for the model, if defined.

__pydantic_private__: dict[str, Any] | None[source]

Values of private attributes set on the model instance.

__pydantic_root_model__: ClassVar[bool] = False[source]

Whether the model is a [RootModel][pydantic.root_model.RootModel].

__pydantic_serializer__: ClassVar[SchemaSerializer] = SchemaSerializer(serializer=Model(     ModelSerializer {         class: Py(             0x000055d5a2fc3c30,         ),         serializer: Fields(             GeneralFieldsSerializer {                 fields: {                     "completed_at": SerField {                         key_py: Py(                             0x00007fb463418b70,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "error": SerField {                         key_py: Py(                             0x00007fb467b7b040,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "started_at": SerField {                         key_py: Py(                             0x00007fb463409530,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Datetime(                                                 DatetimeSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "prompt": SerField {                         key_py: Py(                             0x00007fb467b96ba0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Str(                                                 StrSerializer,                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "source_ranges": SerField {                         key_py: Py(                             0x00007fb463d13df0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             List(                                 ListSerializer {                                     item_serializer: Model(                                         ModelSerializer {                                             class: Py(                                                 0x000055d5a311c6c0,                                             ),                                             serializer: Fields(                                                 GeneralFieldsSerializer {                                                     fields: {                                                         "range": SerField {                                                             key_py: Py(                                                                 0x00007fb467b9db80,                                                             ),                                                             alias: None,                                                             alias_py: None,                                                             serializer: Some(                                                                 Model(                                                                     ModelSerializer {                                                                         class: Py(                                                                             0x000055d5a3119ab0,                                                                         ),                                                                         serializer: Fields(                                                                             GeneralFieldsSerializer {                                                                                 fields: {                                                                                     "start": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c21fc8,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                     "end": SerField {                                                                                         key_py: Py(                                                                                             0x00007fb467c1e648,                                                                                         ),                                                                                         alias: None,                                                                                         alias_py: None,                                                                                         serializer: Some(                                                                                             Recursive(                                                                                                 DefinitionRefSerializer {                                                                                                     definition: "...",                                                                                                     retry_with_lax_check: true,                                                                                                 },                                                                                             ),                                                                                         ),                                                                                         required: true,                                                                                     },                                                                                 },                                                                                 computed_fields: Some(                                                                                     ComputedFields(                                                                                         [],                                                                                     ),                                                                                 ),                                                                                 mode: SimpleDict,                                                                                 extra_serializer: None,                                                                                 filter: SchemaFilter {                                                                                     include: None,                                                                                     exclude: None,                                                                                 },                                                                                 required_fields: 2,                                                                             },                                                                         ),                                                                         has_extra: false,                                                                         root_model: false,                                                                         name: "SourceRange",                                                                     },                                                                 ),                                                             ),                                                             required: true,                                                         },                                                         "prompt": SerField {                                                             key_py: Py(                                                                 0x00007fb467b96ba0,                                                             ),                                                             alias: None,                                                             alias_py: None,                                                             serializer: Some(                                                                 Str(                                                                     StrSerializer,                                                                 ),                                                             ),                                                             required: true,                                                         },                                                     },                                                     computed_fields: Some(                                                         ComputedFields(                                                             [],                                                         ),                                                     ),                                                     mode: SimpleDict,                                                     extra_serializer: None,                                                     filter: SchemaFilter {                                                         include: None,                                                         exclude: None,                                                     },                                                     required_fields: 2,                                                 },                                             ),                                             has_extra: false,                                             root_model: false,                                             name: "SourceRangePrompt",                                         },                                     ),                                     filter: SchemaFilter {                                         include: None,                                         exclude: None,                                     },                                     name: "list[SourceRangePrompt]",                                 },                             ),                         ),                         required: true,                     },                     "user_id": SerField {                         key_py: Py(                             0x00007fb463f850e0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "status": SerField {                         key_py: Py(                             0x00007fb467c22030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a30f5a00,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "model": SerField {                         key_py: Py(                             0x00007fb464d58690,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Enum(                                 EnumSerializer {                                     class: Py(                                         0x000055d5a31204b0,                                     ),                                     serializer: Some(                                         Str(                                             StrSerializer,                                         ),                                     ),                                 },                             ),                         ),                         required: true,                     },                     "feedback": SerField {                         key_py: Py(                             0x00007fb463d3b570,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb467b2d100,                                         ),                                     ),                                     serializer: Nullable(                                         NullableSerializer {                                             serializer: Enum(                                                 EnumSerializer {                                                     class: Py(                                                         0x000055d5a3210ef0,                                                     ),                                                     serializer: Some(                                                         Str(                                                             StrSerializer,                                                         ),                                                     ),                                                 },                                             ),                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "id": SerField {                         key_py: Py(                             0x00007fb467c1f3d0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "model_version": SerField {                         key_py: Py(                             0x00007fb463d3b4f0,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "type": SerField {                         key_py: Py(                             0x00007fb467c22880,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             WithDefault(                                 WithDefaultSerializer {                                     default: Default(                                         Py(                                             0x00007fb463f4ba70,                                         ),                                     ),                                     serializer: Literal(                                         LiteralSerializer {                                             expected_int: {},                                             expected_str: {                                                 "text_to_cad_iteration",                                             },                                             expected_py: None,                                             name: "literal['text_to_cad_iteration']",                                         },                                     ),                                 },                             ),                         ),                         required: true,                     },                     "code": SerField {                         key_py: Py(                             0x00007fb467c1dcf8,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "updated_at": SerField {                         key_py: Py(                             0x00007fb463409470,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                     "original_source_code": SerField {                         key_py: Py(                             0x00007fb463d7b030,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Str(                                 StrSerializer,                             ),                         ),                         required: true,                     },                     "created_at": SerField {                         key_py: Py(                             0x00007fb463418b30,                         ),                         alias: None,                         alias_py: None,                         serializer: Some(                             Datetime(                                 DatetimeSerializer,                             ),                         ),                         required: true,                     },                 },                 computed_fields: Some(                     ComputedFields(                         [],                     ),                 ),                 mode: SimpleDict,                 extra_serializer: None,                 filter: SchemaFilter {                     include: None,                     exclude: None,                 },                 required_fields: 16,             },         ),         has_extra: false,         root_model: false,         name: "OptionTextToCadIteration",     }, ), definitions=[Model(ModelSerializer { class: Py(0x55d5a318bde0), serializer: Fields(GeneralFieldsSerializer { fields: {"line": SerField { key_py: Py(0x7fb467c1ff18), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }, "column": SerField { key_py: Py(0x7fb466d8f270), alias: None, alias_py: None, serializer: Some(Int(IntSerializer)), required: true }}, computed_fields: Some(ComputedFields([])), mode: SimpleDict, extra_serializer: None, filter: SchemaFilter { include: None, exclude: None }, required_fields: 2 }), has_extra: false, root_model: false, name: "SourcePosition" })])[source]

The pydantic-core SchemaSerializer used to dump instances of the model.

__pydantic_validator__: ClassVar[SchemaValidator | PluggableSchemaValidator] = SchemaValidator(title="OptionTextToCadIteration", validator=Model(     ModelValidator {         revalidate: Never,         validator: ModelFields(             ModelFieldsValidator {                 fields: [                     Field {                         name: "code",                         lookup_key: Simple {                             key: "code",                             py_key: Py(                                 0x00007fb463e96ac0,                             ),                             path: LookupPath(                                 [                                     S(                                         "code",                                         Py(                                             0x00007fb463e96af0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1dcf8,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "completed_at",                         lookup_key: Simple {                             key: "completed_at",                             py_key: Py(                                 0x00007fb4633ca3b0,                             ),                             path: LookupPath(                                 [                                     S(                                         "completed_at",                                         Py(                                             0x00007fb463392e30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b70,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "created_at",                         lookup_key: Simple {                             key: "created_at",                             py_key: Py(                                 0x00007fb463392db0,                             ),                             path: LookupPath(                                 [                                     S(                                         "created_at",                                         Py(                                             0x00007fb463392df0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463418b30,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "error",                         lookup_key: Simple {                             key: "error",                             py_key: Py(                                 0x00007fb463e96b20,                             ),                             path: LookupPath(                                 [                                     S(                                         "error",                                         Py(                                             0x00007fb463e96b50,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b7b040,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "feedback",                         lookup_key: Simple {                             key: "feedback",                             py_key: Py(                                 0x00007fb463392d30,                             ),                             path: LookupPath(                                 [                                     S(                                         "feedback",                                         Py(                                             0x00007fb463392cf0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3b570,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: StrEnum(                                             EnumValidator {                                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                                 class: Py(                                                     0x000055d5a3210ef0,                                                 ),                                                 lookup: LiteralLookup {                                                     expected_bool: None,                                                     expected_int: None,                                                     expected_str: Some(                                                         {                                                             "thumbs_down": 1,                                                             "accepted": 2,                                                             "thumbs_up": 0,                                                             "rejected": 3,                                                         },                                                     ),                                                     expected_py_dict: None,                                                     expected_py_values: None,                                                     expected_py_primitives: Some(                                                         Py(                                                             0x00007fb463392d80,                                                         ),                                                     ),                                                     values: [                                                         Py(                                                             0x00007fb4635c4530,                                                         ),                                                         Py(                                                             0x00007fb4635c4590,                                                         ),                                                         Py(                                                             0x00007fb4635c45f0,                                                         ),                                                         Py(                                                             0x00007fb4635c4650,                                                         ),                                                     ],                                                 },                                                 missing: None,                                                 expected_repr: "'thumbs_up', 'thumbs_down', 'accepted' or 'rejected'",                                                 strict: false,                                                 class_repr: "MlFeedback",                                                 name: "str-enum[MlFeedback]",                                             },                                         ),                                         name: "nullable[str-enum[MlFeedback]]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str-enum[MlFeedback]]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "id",                         lookup_key: Simple {                             key: "id",                             py_key: Py(                                 0x00007fb463e96b80,                             ),                             path: LookupPath(                                 [                                     S(                                         "id",                                         Py(                                             0x00007fb463e96bb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c1f3d0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb463393180,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "model",                         lookup_key: Simple {                             key: "model",                             py_key: Py(                                 0x00007fb463e96be0,                             ),                             path: LookupPath(                                 [                                     S(                                         "model",                                         Py(                                             0x00007fb463e96c10,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb464d58690,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a31204b0,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "cad": 0,                                             "kcl": 1,                                             "kcl_iteration": 2,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb463392cc0,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635c4770,                                         ),                                         Py(                                             0x00007fb4635c5df0,                                         ),                                         Py(                                             0x00007fb4635c6090,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'cad', 'kcl' or 'kcl_iteration'",                                 strict: false,                                 class_repr: "TextToCadModel",                                 name: "str-enum[TextToCadModel]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "model_version",                         lookup_key: Simple {                             key: "model_version",                             py_key: Py(                                 0x00007fb463392c70,                             ),                             path: LookupPath(                                 [                                     S(                                         "model_version",                                         Py(                                             0x00007fb463392c30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d3b4f0,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "original_source_code",                         lookup_key: Simple {                             key: "original_source_code",                             py_key: Py(                                 0x00007fb463392bf0,                             ),                             path: LookupPath(                                 [                                     S(                                         "original_source_code",                                         Py(                                             0x00007fb463392bb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d7b030,                         ),                         validator: Str(                             StrValidator {                                 strict: false,                                 coerce_numbers_to_str: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "prompt",                         lookup_key: Simple {                             key: "prompt",                             py_key: Py(                                 0x00007fb463e96c40,                             ),                             path: LookupPath(                                 [                                     S(                                         "prompt",                                         Py(                                             0x00007fb463e96c70,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467b96ba0,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Str(                                             StrValidator {                                                 strict: false,                                                 coerce_numbers_to_str: false,                                             },                                         ),                                         name: "nullable[str]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[str]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "source_ranges",                         lookup_key: Simple {                             key: "source_ranges",                             py_key: Py(                                 0x00007fb463392b70,                             ),                             path: LookupPath(                                 [                                     S(                                         "source_ranges",                                         Py(                                             0x00007fb463392b30,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463d13df0,                         ),                         validator: List(                             ListValidator {                                 strict: false,                                 item_validator: Some(                                     Model(                                         ModelValidator {                                             revalidate: Never,                                             validator: ModelFields(                                                 ModelFieldsValidator {                                                     fields: [                                                         Field {                                                             name: "prompt",                                                             lookup_key: Simple {                                                                 key: "prompt",                                                                 py_key: Py(                                                                     0x00007fb463e96ca0,                                                                 ),                                                                 path: LookupPath(                                                                     [                                                                         S(                                                                             "prompt",                                                                             Py(                                                                                 0x00007fb463e96cd0,                                                                             ),                                                                         ),                                                                     ],                                                                 ),                                                             },                                                             name_py: Py(                                                                 0x00007fb467b96ba0,                                                             ),                                                             validator: Str(                                                                 StrValidator {                                                                     strict: false,                                                                     coerce_numbers_to_str: false,                                                                 },                                                             ),                                                             frozen: false,                                                         },                                                         Field {                                                             name: "range",                                                             lookup_key: Simple {                                                                 key: "range",                                                                 py_key: Py(                                                                     0x00007fb463e96dc0,                                                                 ),                                                                 path: LookupPath(                                                                     [                                                                         S(                                                                             "range",                                                                             Py(                                                                                 0x00007fb463e96df0,                                                                             ),                                                                         ),                                                                     ],                                                                 ),                                                             },                                                             name_py: Py(                                                                 0x00007fb467b9db80,                                                             ),                                                             validator: Model(                                                                 ModelValidator {                                                                     revalidate: Never,                                                                     validator: ModelFields(                                                                         ModelFieldsValidator {                                                                             fields: [                                                                                 Field {                                                                                     name: "end",                                                                                     lookup_key: Simple {                                                                                         key: "end",                                                                                         py_key: Py(                                                                                             0x00007fb463e96d00,                                                                                         ),                                                                                         path: LookupPath(                                                                                             [                                                                                                 S(                                                                                                     "end",                                                                                                     Py(                                                                                                         0x00007fb463e96d30,                                                                                                     ),                                                                                                 ),                                                                                             ],                                                                                         ),                                                                                     },                                                                                     name_py: Py(                                                                                         0x00007fb467c1e648,                                                                                     ),                                                                                     validator: DefinitionRef(                                                                                         DefinitionRefValidator {                                                                                             definition: "...",                                                                                         },                                                                                     ),                                                                                     frozen: false,                                                                                 },                                                                                 Field {                                                                                     name: "start",                                                                                     lookup_key: Simple {                                                                                         key: "start",                                                                                         py_key: Py(                                                                                             0x00007fb463e96d60,                                                                                         ),                                                                                         path: LookupPath(                                                                                             [                                                                                                 S(                                                                                                     "start",                                                                                                     Py(                                                                                                         0x00007fb463e96d90,                                                                                                     ),                                                                                                 ),                                                                                             ],                                                                                         ),                                                                                     },                                                                                     name_py: Py(                                                                                         0x00007fb467c21fc8,                                                                                     ),                                                                                     validator: DefinitionRef(                                                                                         DefinitionRefValidator {                                                                                             definition: "...",                                                                                         },                                                                                     ),                                                                                     frozen: false,                                                                                 },                                                                             ],                                                                             model_name: "SourceRange",                                                                             extra_behavior: Ignore,                                                                             extras_validator: None,                                                                             strict: false,                                                                             from_attributes: false,                                                                             loc_by_alias: true,                                                                         },                                                                     ),                                                                     class: Py(                                                                         0x000055d5a3119ab0,                                                                     ),                                                                     generic_origin: None,                                                                     post_init: None,                                                                     frozen: false,                                                                     custom_init: false,                                                                     root_model: false,                                                                     undefined: Py(                                                                         0x00007fb465c3e3d0,                                                                     ),                                                                     name: "SourceRange",                                                                 },                                                             ),                                                             frozen: false,                                                         },                                                     ],                                                     model_name: "SourceRangePrompt",                                                     extra_behavior: Ignore,                                                     extras_validator: None,                                                     strict: false,                                                     from_attributes: false,                                                     loc_by_alias: true,                                                 },                                             ),                                             class: Py(                                                 0x000055d5a311c6c0,                                             ),                                             generic_origin: None,                                             post_init: None,                                             frozen: false,                                             custom_init: false,                                             root_model: false,                                             undefined: Py(                                                 0x00007fb465c3e3d0,                                             ),                                             name: "SourceRangePrompt",                                         },                                     ),                                 ),                                 min_length: None,                                 max_length: None,                                 name: OnceLock(                                     <uninit>,                                 ),                                 fail_fast: false,                             },                         ),                         frozen: false,                     },                     Field {                         name: "started_at",                         lookup_key: Simple {                             key: "started_at",                             py_key: Py(                                 0x00007fb463392af0,                             ),                             path: LookupPath(                                 [                                     S(                                         "started_at",                                         Py(                                             0x00007fb463392ab0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409530,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb467b2d100,                                     ),                                 ),                                 on_error: Raise,                                 validator: Nullable(                                     NullableValidator {                                         validator: Datetime(                                             DateTimeValidator {                                                 strict: false,                                                 constraints: None,                                                 microseconds_precision: Truncate,                                             },                                         ),                                         name: "nullable[datetime]",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[nullable[datetime]]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "status",                         lookup_key: Simple {                             key: "status",                             py_key: Py(                                 0x00007fb463e96e20,                             ),                             path: LookupPath(                                 [                                     S(                                         "status",                                         Py(                                             0x00007fb463e96e50,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22030,                         ),                         validator: StrEnum(                             EnumValidator {                                 phantom: PhantomData<_pydantic_core::validators::enum_::StrEnumValidator>,                                 class: Py(                                     0x000055d5a30f5a00,                                 ),                                 lookup: LiteralLookup {                                     expected_bool: None,                                     expected_int: None,                                     expected_str: Some(                                         {                                             "uploaded": 1,                                             "completed": 3,                                             "in_progress": 2,                                             "failed": 4,                                             "queued": 0,                                         },                                     ),                                     expected_py_dict: None,                                     expected_py_values: None,                                     expected_py_primitives: Some(                                         Py(                                             0x00007fb463392a80,                                         ),                                     ),                                     values: [                                         Py(                                             0x00007fb4635ed130,                                         ),                                         Py(                                             0x00007fb4635ed190,                                         ),                                         Py(                                             0x00007fb4635ed250,                                         ),                                         Py(                                             0x00007fb4635ed2b0,                                         ),                                         Py(                                             0x00007fb4635ed310,                                         ),                                     ],                                 },                                 missing: None,                                 expected_repr: "'queued', 'uploaded', 'in_progress', 'completed' or 'failed'",                                 strict: false,                                 class_repr: "ApiCallStatus",                                 name: "str-enum[ApiCallStatus]",                             },                         ),                         frozen: false,                     },                     Field {                         name: "type",                         lookup_key: Simple {                             key: "type",                             py_key: Py(                                 0x00007fb463e96e80,                             ),                             path: LookupPath(                                 [                                     S(                                         "type",                                         Py(                                             0x00007fb463e96eb0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb467c22880,                         ),                         validator: WithDefault(                             WithDefaultValidator {                                 default: Default(                                     Py(                                         0x00007fb463f4ba70,                                     ),                                 ),                                 on_error: Raise,                                 validator: Literal(                                     LiteralValidator {                                         lookup: LiteralLookup {                                             expected_bool: None,                                             expected_int: None,                                             expected_str: Some(                                                 {                                                     "text_to_cad_iteration": 0,                                                 },                                             ),                                             expected_py_dict: None,                                             expected_py_values: None,                                             expected_py_primitives: Some(                                                 Py(                                                     0x00007fb463392a40,                                                 ),                                             ),                                             values: [                                                 Py(                                                     0x00007fb463f4ba70,                                                 ),                                             ],                                         },                                         expected_repr: "'text_to_cad_iteration'",                                         name: "literal['text_to_cad_iteration']",                                     },                                 ),                                 validate_default: false,                                 copy_default: false,                                 name: "default[literal['text_to_cad_iteration']]",                                 undefined: Py(                                     0x00007fb465c3e3d0,                                 ),                             },                         ),                         frozen: false,                     },                     Field {                         name: "updated_at",                         lookup_key: Simple {                             key: "updated_at",                             py_key: Py(                                 0x00007fb4633929f0,                             ),                             path: LookupPath(                                 [                                     S(                                         "updated_at",                                         Py(                                             0x00007fb4633929b0,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463409470,                         ),                         validator: Datetime(                             DateTimeValidator {                                 strict: false,                                 constraints: None,                                 microseconds_precision: Truncate,                             },                         ),                         frozen: false,                     },                     Field {                         name: "user_id",                         lookup_key: Simple {                             key: "user_id",                             py_key: Py(                                 0x00007fb463e96ee0,                             ),                             path: LookupPath(                                 [                                     S(                                         "user_id",                                         Py(                                             0x00007fb463e96f10,                                         ),                                     ),                                 ],                             ),                         },                         name_py: Py(                             0x00007fb463f850e0,                         ),                         validator: FunctionAfter(                             FunctionAfterValidator {                                 validator: Str(                                     StrValidator {                                         strict: false,                                         coerce_numbers_to_str: false,                                     },                                 ),                                 func: Py(                                     0x000055d5a30f7240,                                 ),                                 config: Py(                                     0x00007fb463393180,                                 ),                                 name: "function-after[Uuid(), str]",                                 field_name: None,                                 info_arg: false,                             },                         ),                         frozen: false,                     },                 ],                 model_name: "OptionTextToCadIteration",                 extra_behavior: Ignore,                 extras_validator: None,                 strict: false,                 from_attributes: false,                 loc_by_alias: true,             },         ),         class: Py(             0x000055d5a2fc3c30,         ),         generic_origin: None,         post_init: None,         frozen: false,         custom_init: false,         root_model: false,         undefined: Py(             0x00007fb465c3e3d0,         ),         name: "OptionTextToCadIteration",     }, ), definitions=[Model(ModelValidator { revalidate: Never, validator: ModelFields(ModelFieldsValidator { fields: [Field { name: "column", lookup_key: Simple { key: "column", py_key: Py(0x7fb463e969a0), path: LookupPath([S("column", Py(0x7fb463e968e0))]) }, name_py: Py(0x7fb466d8f270), validator: Int(IntValidator { strict: false }), frozen: false }, Field { name: "line", lookup_key: Simple { key: "line", py_key: Py(0x7fb463e96a60), path: LookupPath([S("line", Py(0x7fb463e96a90))]) }, name_py: Py(0x7fb467c1ff18), validator: Int(IntValidator { strict: false }), frozen: false }], model_name: "SourcePosition", extra_behavior: Ignore, extras_validator: None, strict: false, from_attributes: false, loc_by_alias: true }), class: Py(0x55d5a318bde0), generic_origin: None, post_init: None, frozen: false, custom_init: false, root_model: false, undefined: Py(0x7fb465c3e3d0), name: "SourcePosition" })], cache_strings=True)[source]

The pydantic-core SchemaValidator used to validate instances of the model.

__replace__(**changes)[source]
Return type:

Self

__repr__()[source]

Return repr(self).

Return type:

str

__repr_args__()[source]
Return type:

Iterable[tuple[str | None, Any]]

__repr_name__()[source]

Name of the instance’s class, used in __repr__.

Return type:

str

__repr_recursion__(object)[source]

Returns the string representation of a recursive object.

Return type:

str

__repr_str__(join_str)[source]
Return type:

str

__rich_repr__()[source]

Used by Rich (https://rich.readthedocs.io/en/stable/pretty.html) to pretty print objects.

Return type:

Iterable[Any | tuple[Any] | tuple[str, Any] | tuple[str, Any, Any]]

__setattr__(name, value)[source]

Implement setattr(self, name, value).

Return type:

None

__setstate__(state)[source]
Return type:

None

__signature__: ClassVar[Signature] = <Signature (*, code: str, completed_at: Optional[datetime.datetime] = None, created_at: datetime.datetime, error: Optional[str] = None, feedback: Optional[kittycad.models.ml_feedback.MlFeedback] = None, id: kittycad.models.uuid.Uuid, model: kittycad.models.text_to_cad_model.TextToCadModel, model_version: str, original_source_code: str, prompt: Optional[str] = None, source_ranges: List[kittycad.models.source_range_prompt.SourceRangePrompt], started_at: Optional[datetime.datetime] = None, status: kittycad.models.api_call_status.ApiCallStatus, type: Literal['text_to_cad_iteration'] = 'text_to_cad_iteration', updated_at: datetime.datetime, user_id: kittycad.models.uuid.Uuid) -> None>[source]

The synthesized __init__ [Signature][inspect.Signature] of the model.

__slots__ = ('__dict__', '__pydantic_fields_set__', '__pydantic_extra__', '__pydantic_private__')[source]
__str__()[source]

Return str(self).

Return type:

str

_abc_impl = <_abc._abc_data object>[source]
_calculate_keys(*args, **kwargs)[source]
Return type:

Any

_check_frozen(name, value)[source]
Return type:

None

_copy_and_set_values(*args, **kwargs)[source]
Return type:

Any

classmethod _get_value(*args, **kwargs)[source]
Return type:

Any

_iter(*args, **kwargs)[source]
Return type:

Any

code: str[source]
completed_at: Optional[datetime][source]
classmethod construct(_fields_set=None, **values)[source]
Return type:

Self

copy(*, include=None, exclude=None, update=None, deep=False)[source]

Returns a copy of the model.

!!! warning “Deprecated”

This method is now deprecated; use model_copy instead.

If you need include or exclude, use:

`python {test="skip" lint="skip"} data = self.model_dump(include=include, exclude=exclude, round_trip=True) data = {**data, **(update or {})} copied = self.model_validate(data) `

Parameters:
  • include – Optional set or mapping specifying which fields to include in the copied model.

  • exclude – Optional set or mapping specifying which fields to exclude in the copied model.

  • update – Optional dictionary of field-value pairs to override field values in the copied model.

  • deep – If True, the values of fields that are Pydantic models will be deep-copied.

Returns:

A copy of the model with included, excluded and updated fields as specified.

created_at: datetime[source]
dict(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False)[source]
Return type:

Dict[str, Any]

error: Optional[str][source]
feedback: Optional[MlFeedback][source]
classmethod from_orm(obj)[source]
Return type:

Self

id: Uuid[source]
json(*, include=None, exclude=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, encoder=PydanticUndefined, models_as_dict=PydanticUndefined, **dumps_kwargs)[source]
Return type:

str

model: TextToCadModel[source]
model_computed_fields: ClassVar[dict[str, ComputedFieldInfo]] = {}[source]
model_config: ClassVar[ConfigDict] = {'protected_namespaces': ()}[source]

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

classmethod model_construct(_fields_set=None, **values)[source]

Creates a new instance of the Model class with validated data.

Creates a new model setting __dict__ and __pydantic_fields_set__ from trusted or pre-validated data. Default values are respected, but no other validation is performed.

!!! note

model_construct() generally respects the model_config.extra setting on the provided model. That is, if model_config.extra == 'allow', then all extra passed values are added to the model instance’s __dict__ and __pydantic_extra__ fields. If model_config.extra == 'ignore' (the default), then all extra passed values are ignored. Because no validation is performed with a call to model_construct(), having model_config.extra == 'forbid' does not result in an error if extra values are passed, but they will be ignored.

Parameters:
  • _fields_set (set[str] | None) – A set of field names that were originally explicitly set during instantiation. If provided, this is directly used for the [model_fields_set][pydantic.BaseModel.model_fields_set] attribute. Otherwise, the field names from the values argument will be used.

  • values (Any) – Trusted or pre-validated data dictionary.

Return type:

Self

Returns:

A new instance of the Model class with validated data.

model_copy(*, update=None, deep=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#model_copy

Returns a copy of the model.

Parameters:
  • update (Optional[Mapping[str, Any]]) – Values to change/add in the new model. Note: the data is not validated before creating the new model. You should trust this data.

  • deep (bool) – Set to True to make a deep copy of the model.

Return type:

Self

Returns:

New model instance.

model_dump(*, mode='python', include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump

Generate a dictionary representation of the model, optionally specifying which fields to include or exclude.

Parameters:
Return type:

dict[str, Any]

Returns:

A dictionary representation of the model.

model_dump_json(*, indent=None, include=None, exclude=None, context=None, by_alias=False, exclude_unset=False, exclude_defaults=False, exclude_none=False, round_trip=False, warnings=True, serialize_as_any=False)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/serialization/#modelmodel_dump_json

Generates a JSON representation of the model using Pydantic’s to_json method.

Parameters:
Return type:

str

Returns:

A JSON string representation of the model.

property model_extra: dict[str, Any] | None[source]

Get extra fields set during validation.

Returns:

A dictionary of extra fields, or None if config.extra is not set to "allow".

model_fields: ClassVar[dict[str, FieldInfo]] = {'code': FieldInfo(annotation=str, required=True), 'completed_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'created_at': FieldInfo(annotation=datetime, required=True), 'error': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'feedback': FieldInfo(annotation=Union[MlFeedback, NoneType], required=False, default=None), 'id': FieldInfo(annotation=Uuid, required=True), 'model': FieldInfo(annotation=TextToCadModel, required=True), 'model_version': FieldInfo(annotation=str, required=True), 'original_source_code': FieldInfo(annotation=str, required=True), 'prompt': FieldInfo(annotation=Union[str, NoneType], required=False, default=None), 'source_ranges': FieldInfo(annotation=List[SourceRangePrompt], required=True), 'started_at': FieldInfo(annotation=Union[datetime, NoneType], required=False, default=None), 'status': FieldInfo(annotation=ApiCallStatus, required=True), 'type': FieldInfo(annotation=Literal['text_to_cad_iteration'], required=False, default='text_to_cad_iteration'), 'updated_at': FieldInfo(annotation=datetime, required=True), 'user_id': FieldInfo(annotation=Uuid, required=True)}[source]
property model_fields_set: set[str][source]

Returns the set of fields that have been explicitly set on this model instance.

Returns:

A set of strings representing the fields that have been set,

i.e. that were not filled from defaults.

classmethod model_json_schema(by_alias=True, ref_template='#/$defs/{model}', schema_generator=<class 'pydantic.json_schema.GenerateJsonSchema'>, mode='validation')[source]

Generates a JSON schema for a model class.

Parameters:
  • by_alias (bool) – Whether to use attribute aliases or not.

  • ref_template (str) – The reference template.

  • schema_generator (type[GenerateJsonSchema]) – To override the logic used to generate the JSON schema, as a subclass of GenerateJsonSchema with your desired modifications

  • mode (Literal['validation', 'serialization']) – The mode in which to generate the schema.

Return type:

dict[str, Any]

Returns:

The JSON schema for the given model class.

classmethod model_parametrized_name(params)[source]

Compute the class name for parametrizations of generic classes.

This method can be overridden to achieve a custom naming scheme for generic BaseModels.

Parameters:

params (tuple[type[Any], ...]) – Tuple of types of the class. Given a generic class Model with 2 type variables and a concrete model Model[str, int], the value (str, int) would be passed to params.

Return type:

str

Returns:

String representing the new class where params are passed to cls as type variables.

Raises:

TypeError – Raised when trying to generate concrete names for non-generic models.

model_post_init(_BaseModel__context)[source]

Override this method to perform additional initialization after __init__ and model_construct. This is useful if you want to do some validation that requires the entire model to be initialized.

Return type:

None

classmethod model_rebuild(*, force=False, raise_errors=True, _parent_namespace_depth=2, _types_namespace=None)[source]

Try to rebuild the pydantic-core schema for the model.

This may be necessary when one of the annotations is a ForwardRef which could not be resolved during the initial attempt to build the schema, and automatic rebuilding fails.

Parameters:
  • force (bool) – Whether to force the rebuilding of the model schema, defaults to False.

  • raise_errors (bool) – Whether to raise errors, defaults to True.

  • _parent_namespace_depth (int) – The depth level of the parent namespace, defaults to 2.

  • _types_namespace (Optional[Mapping[str, Any]]) – The types namespace, defaults to None.

Return type:

bool | None

Returns:

Returns None if the schema is already “complete” and rebuilding was not required. If rebuilding _was_ required, returns True if rebuilding was successful, otherwise False.

classmethod model_validate(obj, *, strict=None, from_attributes=None, context=None)[source]

Validate a pydantic model instance.

Parameters:
  • obj (Any) – The object to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • from_attributes (bool | None) – Whether to extract data from object attributes.

  • context (Any | None) – Additional context to pass to the validator.

Raises:

ValidationError – If the object could not be validated.

Return type:

Self

Returns:

The validated model instance.

classmethod model_validate_json(json_data, *, strict=None, context=None)[source]

Usage docs: https://docs.pydantic.dev/2.10/concepts/json/#json-parsing

Validate the given JSON data against the Pydantic model.

Parameters:
  • json_data (str | bytes | bytearray) – The JSON data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

Raises:

ValidationError – If json_data is not a JSON string or the object could not be validated.

classmethod model_validate_strings(obj, *, strict=None, context=None)[source]

Validate the given object with string data against the Pydantic model.

Parameters:
  • obj (Any) – The object containing string data to validate.

  • strict (bool | None) – Whether to enforce types strictly.

  • context (Any | None) – Extra variables to pass to the validator.

Return type:

Self

Returns:

The validated Pydantic model.

model_version: str[source]
original_source_code: str[source]
classmethod parse_file(path, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

classmethod parse_obj(obj)[source]
Return type:

Self

classmethod parse_raw(b, *, content_type=None, encoding='utf8', proto=None, allow_pickle=False)[source]
Return type:

Self

prompt: Optional[str][source]
classmethod schema(by_alias=True, ref_template='#/$defs/{model}')[source]
Return type:

Dict[str, Any]

classmethod schema_json(*, by_alias=True, ref_template='#/$defs/{model}', **dumps_kwargs)[source]
Return type:

str

source_ranges: List[SourceRangePrompt][source]
started_at: Optional[datetime][source]
status: ApiCallStatus[source]
type: Literal['text_to_cad_iteration'][source]
classmethod update_forward_refs(**localns)[source]
Return type:

None

updated_at: datetime[source]
user_id: Uuid[source]
classmethod validate(value)[source]
Return type:

Self