Types

tornado_openapi3.types.Deserializer

A type representing an OpenAPI deserializer.

alias of Callable[[Union[bytes, str]], Any]

class tornado_openapi3.types.Formatter(*args, **kwargs)

A type representing an OpenAPI formatter.

validate(value: str)bool

Validate that the value matches the expected format.

unmarshal(value: str)Any

Translate the value into a Python object.