We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 873d918 commit 4cb39d9Copy full SHA for 4cb39d9
1 file changed
src/budy/models/voucher.py
@@ -68,9 +68,23 @@ class Voucher(base.BudyBase):
68
will be performed using proper exchange rate conversion""",
69
)
70
71
- start = appier.field(type=int, index=True, safe=True, meta="datetime")
+ start = appier.field(
72
+ type=int,
73
+ index=True,
74
+ safe=True,
75
+ meta="datetime",
76
+ observations="""The start date of the voucher, meaning
77
+ that the voucher is only valid after this date""",
78
+ )
79
- expiration = appier.field(type=int, index=True, safe=True, meta="datetime")
80
+ expiration = appier.field(
81
82
83
84
85
+ observations="""The expiration date of the voucher, meaning
86
+ that the voucher is no longer valid after this date""",
87
88
89
usage_count = appier.field(
90
type=int,
0 commit comments