mirror of
https://github.com/apidoorman/doorman.git
synced 2026-04-26 18:46:46 -05:00
14 lines
428 B
Python
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 |