Module ksqldb_confluent.types.schema
Expand source code
# Copyright 2022 Confluent Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Refer to LICENSE for more information.
from dataclasses import dataclass
from typing import List
from ksqldb_confluent.types.column import Column
@dataclass
class Schema:
"""
This class represents the schema of a response returned by the ksqlDB Server. This includes
columns and each of their types.
Attributes:
columns (List[Column]): The columns which represent the schema.
"""
columns: List[Column]
def __repr__(self) -> str:
return f'Schema{{Columns={self.columns}}}'
Classes
class Schema (columns: List[Column])
-
This class represents the schema of a response returned by the ksqlDB Server. This includes columns and each of their types.
Attributes
columns
:List[Column]
- The columns which represent the schema.
Expand source code
@dataclass class Schema: """ This class represents the schema of a response returned by the ksqlDB Server. This includes columns and each of their types. Attributes: columns (List[Column]): The columns which represent the schema. """ columns: List[Column] def __repr__(self) -> str: return f'Schema{{Columns={self.columns}}}'
Class variables
var columns : List[Column]