Skip to content

Commit

Permalink
chg: make enketoId and name optional in the Form model
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsay-stevens committed Jul 12, 2024
1 parent fc58f7b commit e7d9bb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyodk/_endpoints/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
class Form(bases.Model):
projectId: int
xmlFormId: str
name: str
version: str
enketoId: str
hash: str
state: str # open, closing, closed
createdAt: datetime
name: str | None # Null if Central couldn't parse the XForm title, or it was blank.
enketoId: str | None # Null if Enketo not being used with Central.
keyId: int | None
updatedAt: datetime | None
publishedAt: datetime | None
Expand Down

0 comments on commit e7d9bb5

Please sign in to comment.