* Don't import the connector manifest schema
* Revert "Don't import the connector manifest schema"
This reverts commit 84589dcf07.
* revert
* revert
* reset
24 lines
642 B
Python
24 lines
642 B
Python
# coding: utf-8
|
|
|
|
from __future__ import annotations
|
|
from datetime import date, datetime # noqa: F401
|
|
|
|
import re # noqa: F401
|
|
from typing import Any, Dict, List, Optional # noqa: F401
|
|
|
|
from pydantic import AnyUrl, BaseModel, EmailStr, Field, validator # noqa: F401
|
|
|
|
|
|
class CheckStream(BaseModel):
|
|
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
|
|
Do not edit the class manually.
|
|
|
|
CheckStream - a model defined in OpenAPI
|
|
|
|
stream_names: The stream_names of this CheckStream.
|
|
"""
|
|
|
|
stream_names: List[str] = Field(alias="stream_names")
|
|
|
|
CheckStream.update_forward_refs() |