Source code for depot_service.models.eventhub

from typing import Optional
from pydantic import BaseModel


[docs]class Eventhub(BaseModel): endpoint: Optional[str] eventhubName: Optional[str]