MorningReportRequest
Request model for morning report
Properties
| Property | Type | Required | Description |
|---|---|---|---|
action | string | β No | - |
recipient | string | β No | - |
sheet_id | object | β No | - |
Example
{
"action": "example",
"recipient": "example",
"sheet_id": {}
}Used In
Code Examples
TypeScript
interface MorningReportRequest {
action?: string;
recipient?: string;
sheet_id?: any;
}
// Usage example
const data: MorningReportRequest = {
"action": "example",
"recipient": "example",
"sheet_id": {}
};Python
from data_layer.schemas import MorningReportRequest
# Create instance
data = MorningReportRequest(
# Add your field values here
)cURL
curl -X POST "https://altsportsleagues-backend-2qcdjegnaa-uc.a.run.app/api/endpoint" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{ "action": "example", "recipient": "example", "sheet_id": {} }'Validation Rules
No specific validation rules.
Additional Information
- Type: object
- Source: Generated from Pydantic models in
data_layer/schemas/ - Auto-validated: All fields are validated by FastAPI
This documentation is auto-generated from the OpenAPI specification.