1
0
mirror of synced 2026-01-18 15:02:51 -05:00
Files
airbyte/airbyte-connector-builder-server/connector_builder/generated/models/interpolated_string.py
Alexandre Girard f8beda08da Don't import the connector manifest schema (#20218)
* Don't import the connector manifest schema

* Revert "Don't import the connector manifest schema"

This reverts commit 84589dcf07.

* revert

* revert

* reset
2022-12-08 13:56:52 -08:00

26 lines
774 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 InterpolatedString(BaseModel):
"""NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Do not edit the class manually.
InterpolatedString - a model defined in OpenAPI
string: The string of this InterpolatedString.
default: The default of this InterpolatedString [Optional].
"""
string: str = Field(alias="string")
default: Optional[str] = Field(alias="default", default=None)
InterpolatedString.update_forward_refs()