Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrimaho/7b4b6c24494de73382f6b9cb46cda8a2 to your computer and use it in GitHub Desktop.
Save chrimaho/7b4b6c24494de73382f6b9cb46cda8a2 to your computer and use it in GitHub Desktop.
# Successful Response: status_code=200 ----
class Success(BaseModel):
Success:str="Response Text"
# Validation Error: status_code=422 ----
class ValidationError(BaseModel):
Message:str="Details about the validation error"
# Server Error: status_code=500 ----
class InternalServerError(BaseModel):
Failed:str="The function or URL which was tried"
Error:str="Name of the error"
Doc:str="Documentation about the error"
Message:str="The error message itself"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment