Interface CatalogListResponse

interface CatalogListResponse {
    catalogs: {
        description: string;
        fields: {
            name: string;
            type: string;
        }[];
    }[];
    errors?: string[];
    message: string;
}

Hierarchy

  • ServerResponse
    • CatalogListResponse

Properties

catalogs: {
    description: string;
    fields: {
        name: string;
        type: string;
    }[];
}[]
errors?: string[]
message: string