Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Clulow (0.17 sec)

  1. fastapi/openapi/models.py

                return with_info_plain_validator_function(cls._validate)
    
    
    class BaseModelWithConfig(BaseModel):
        if PYDANTIC_V2:
            model_config = {"extra": "allow"}
    
        else:
    
            class Config:
                extra = "allow"
    
    
    class Contact(BaseModelWithConfig):
        name: Optional[str] = None
        url: Optional[AnyUrl] = None
        email: Optional[EmailStr] = None
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (0)
Back to top