1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
# generated by datamodel-codegen:
# filename: msgspec_oneof_with_null.yaml
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from typing import Annotated, Union
from msgspec import UNSET, Meta, Struct, UnsetType
from typing_extensions import TypeAlias
OptionalOneofWithNullAndConstraint: TypeAlias = Annotated[str, Meta(max_length=100)]
class Model(Struct):
required_field: str
optional_oneof_with_null: Union[str, None, UnsetType] = UNSET
optional_anyof_with_null: Union[str, None, UnsetType] = UNSET
optional_field_not_nullable: Union[str, UnsetType] = UNSET
optional_oneof_with_null_and_constraint: Union[
OptionalOneofWithNullAndConstraint, None, UnsetType
] = UNSET
optional_nullable_field: Union[str, UnsetType] = UNSET
optional_nullable_with_constraint: Union[
Annotated[str, Meta(max_length=50)], UnsetType
] = UNSET
optional_nullable_with_min_length: Union[
Annotated[str, Meta(min_length=5)], UnsetType
] = UNSET
|