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 30 31
|
# generated by datamodel-codegen:
# filename: use_non_positive_negative.json
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from typing import Optional
from pydantic import (
BaseModel,
Field,
NonNegativeFloat,
NonNegativeInt,
NonPositiveFloat,
NonPositiveInt,
)
class NumberConstraints(BaseModel):
non_negative_count: Optional[NonNegativeInt] = Field(
None, description='A count that cannot be negative'
)
non_positive_balance: Optional[NonPositiveInt] = Field(
None, description='A balance that cannot be positive'
)
non_negative_amount: Optional[NonNegativeFloat] = Field(
None, description='An amount that cannot be negative'
)
non_positive_score: Optional[NonPositiveFloat] = Field(
None, description='A score that cannot be positive'
)
|