Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for __fields__ (0.28 sec)

  1. fastapi/utils.py

            if use_type is None:
                use_type = create_model(original_type.__name__, __base__=original_type)
                cloned_types[original_type] = use_type
                for f in original_type.__fields__.values():
                    use_type.__fields__[f.name] = create_cloned_field(
                        f, cloned_types=cloned_types
                    )
        new_field = create_response_field(name=field.name, type_=use_type)
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  2. fastapi/_compat.py

        def create_body_model(
            *, fields: Sequence[ModelField], model_name: str
        ) -> Type[BaseModel]:
            BodyModel = create_model(model_name)
            for f in fields:
                BodyModel.__fields__[f.name] = f  # type: ignore[index]
            return BodyModel
    
    
    def _regenerate_error_with_loc(
        *, errors: Sequence[Any], loc_prefix: Tuple[Union[str, int], ...]
    ) -> List[Dict[str, Any]]:
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top