12 lines
210 B
Python
12 lines
210 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class StoreCouponParams(BaseModel):
|
|
"""The parameters for a new store coupon."""
|
|
|
|
percent_off: int
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|