# coding: utf-8 """ AWS Docs API API for AWS Docs # noqa: E501 The version of the OpenAPI document: 1.0.0 Generated by: https://openapi-generator.tech """ from datetime import date, datetime # noqa: F401 import decimal # noqa: F401 import functools # noqa: F401 import io # noqa: F401 import re # noqa: F401 import typing # noqa: F401 import uuid # noqa: F401 import frozendict # noqa: F401 from api_python_client import schemas # noqa: F401 class FormSchema( schemas.ComposedBase, schemas.DictSchema ): """NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech Do not edit the class manually. A schema defining the structured data expected for a form """ class MetaOapg: required = { "schemaId", } class properties: schemaId = schemas.StrSchema __annotations__ = { "schemaId": schemaId, } @classmethod @property @functools.cache def all_of(cls): # we need this here to make our import statements work # we must store _composed_schemas in here so the code is only run # when we invoke this method. If we kept this at the class # level we would get an error because the class level # code would be run when this module is imported, and these composed # classes don't exist yet because their module has not finished # loading return [ FormSchemaInput, CreateUpdateDetails, ] schemaId: MetaOapg.properties.schemaId @typing.overload def __getitem__(self, name: typing.Literal["schemaId"]) -> MetaOapg.properties.schemaId: ... @typing.overload def __getitem__(self, name: str) -> schemas.UnsetAnyTypeSchema: ... def __getitem__(self, name: typing.Union[typing.Literal["schemaId", ], str]): # dict_instance[name] accessor return super().__getitem__(name) @typing.overload def get_item_oapg(self, name: typing.Literal["schemaId"]) -> MetaOapg.properties.schemaId: ... @typing.overload def get_item_oapg(self, name: str) -> typing.Union[schemas.UnsetAnyTypeSchema, schemas.Unset]: ... def get_item_oapg(self, name: typing.Union[typing.Literal["schemaId", ], str]): return super().get_item_oapg(name) def __new__( cls, *args: typing.Union[dict, frozendict.frozendict, ], schemaId: typing.Union[MetaOapg.properties.schemaId, str, ], _configuration: typing.Optional[schemas.Configuration] = None, **kwargs: typing.Union[schemas.AnyTypeSchema, dict, frozendict.frozendict, str, date, datetime, uuid.UUID, int, float, decimal.Decimal, None, list, tuple, bytes], ) -> 'FormSchema': return super().__new__( cls, *args, schemaId=schemaId, _configuration=_configuration, **kwargs, ) from api_python_client.model.create_update_details import CreateUpdateDetails from api_python_client.model.form_schema_input import FormSchemaInput