Skip to content

catalog

Catalog data.

CatalogReply

Bases: BaseModel

Source code in mlte/backend/api/models/catalog.py
 6
 7
 8
 9
10
11
12
13
14
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.