More improvement to Impexium API calls. Should be faster and more robust now.

This commit is contained in:
Scott Idem
2022-03-23 15:38:53 -04:00
parent 7c7bd3c530
commit c625cda845
5 changed files with 120 additions and 55 deletions

View File

@@ -43,7 +43,8 @@ class Event_Badge_Base(BaseModel):
person_id_random: Optional[str]
person_id: Optional[int]
external_id: Optional[str]
external_id: Optional[str] # Generated internally or externally. Needs to be stable. It should not change.
external_sys_id: Optional[str] # Generated by external system (should be stable and not change)
pronouns: Optional[str] # Preferred pronouns
informal_name: Optional[str]

View File

@@ -56,7 +56,8 @@ class Event_Person_Base(BaseModel):
user_id_random: Optional[str]
user_id: Optional[int]
external_id: Optional[str]
external_id: Optional[str] # Generated internally or externally. Needs to be stable. It should not change.
external_sys_id: Optional[str] # Generated by external system (should be stable and not change)
file_count: Optional[int]