Skip to content

catalog

mlte/backend/api/models/catalog_model.py

Catalog data.

CatalogReply

Bases: BaseModel

Source code in mlte/backend/api/models/catalog.py
10
11
12
13
14
15
16
17
18
class CatalogReply(BaseModel):
    id: str
    """The catalog idenditifier."""

    read_only: bool
    """Whether the catalog is read only or not."""

    type: str
    """Type of catalog."""

id instance-attribute

The catalog idenditifier.

read_only instance-attribute

Whether the catalog is read only or not.

type instance-attribute

Type of catalog.