Schema Registry
EmailMonitorResponse

EmailMonitorResponse

Response model for email monitoring

Properties

PropertyTypeRequiredDescription
statusstringβœ… Yes-
messagestringβœ… Yes-
timestampstringβœ… Yes-
emails_foundinteger❌ No-
emails_processedinteger❌ No-

Example

{
  "status": "example",
  "message": "example",
  "timestamp": "example",
  "emails_found": 0,
  "emails_processed": 0
}

Used In

Code Examples

TypeScript

interface EmailMonitorResponse {
  status: string;
  message: string;
  timestamp: string;
  emails_found?: number;
  emails_processed?: number;
}
 
// Usage example
const data: EmailMonitorResponse = {
  "status": "example",
  "message": "example",
  "timestamp": "example",
  "emails_found": 0,
  "emails_processed": 0
};

Python

from data_layer.schemas import EmailMonitorResponse
 
# Create instance
data = EmailMonitorResponse(
    # 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 '{   "status": "example",   "message": "example",   "timestamp": "example",   "emails_found": 0,   "emails_processed": 0 }'

Validation Rules

Required Fields: status, message, timestamp

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.

Platform

Documentation

Community

Support

partnership@altsportsdata.comdev@altsportsleagues.ai

2025 Β© AltSportsLeagues.ai. Powered by AI-driven sports business intelligence.

πŸ€– AI-Enhancedβ€’πŸ“Š Data-Drivenβ€’βš‘ Real-Time