Contents:
from typing import Optional from pydantic import BaseModel [docs]class Eventhub(BaseModel): endpoint: Optional[str] eventhubName: Optional[str]