Files
doorman/backend-services/models/delete_successfully.py
T
2025-10-14 22:15:37 -04:00

14 lines
428 B
Python

"""
The contents of this file are property of Doorman Dev, LLC
Review the Apache License 2.0 for valid authorization of use
See https://github.com/pypeople-dev/doorman for more information
"""
from pydantic import BaseModel, Field
class ResponseMessage(BaseModel):
message: str = Field(None, description='The response message', example='API Deleted Successfully')
class Config:
arbitrary_types_allowed = True