Just lots of work and tweeks
This commit is contained in:
@@ -56,7 +56,7 @@ class Person_Base(BaseModel):
|
||||
suffix: Optional[str] # NOTE: Phasing out! Use *designations* instead.
|
||||
|
||||
professional_title: Optional[str] # Professional title
|
||||
title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead.
|
||||
# title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead.
|
||||
|
||||
display_name: Optional[str] # Custom what they want for public display
|
||||
informal_display_name: Optional[str] # Custom what they want for informal public display
|
||||
@@ -75,10 +75,10 @@ class Person_Base(BaseModel):
|
||||
# END # Auto created name variations
|
||||
|
||||
affiliations: Optional[str] # One or more affiliations with organizations, companies, and other groups
|
||||
affiliation: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
organization_name: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
# affiliation: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
# organization_name: Optional[str] # NOTE: Phasing out! Use *affiliations* instead.
|
||||
|
||||
tagline: Optional[str]
|
||||
tagline: Optional[Union[None, str]]
|
||||
|
||||
birth_date: Optional[datetime.date]
|
||||
lu_gender_id: Optional[int]
|
||||
@@ -90,6 +90,9 @@ class Person_Base(BaseModel):
|
||||
external_id: Optional[str]
|
||||
external_import_id: Optional[str]
|
||||
|
||||
allow_auth_key: Optional[bool]
|
||||
auth_key: Optional[str]
|
||||
|
||||
enable: Optional[bool]
|
||||
|
||||
group: Optional[str]
|
||||
|
||||
Reference in New Issue
Block a user