fix: handling for unset org contacts
This commit is contained in:
parent
23f2ce98d7
commit
804e21b871
1 changed files with 3 additions and 3 deletions
|
|
@ -52,6 +52,6 @@ class OrgContactGetResponse(CustomBaseModel):
|
||||||
class OrgOrgGetResponse(CustomBaseModel):
|
class OrgOrgGetResponse(CustomBaseModel):
|
||||||
name: str
|
name: str
|
||||||
status: Status
|
status: Status
|
||||||
owner_contact: OrgContactGetResponse
|
owner_contact: Optional[OrgContactGetResponse] = None
|
||||||
billing_contact: OrgContactGetResponse
|
billing_contact: Optional[OrgContactGetResponse] = None
|
||||||
security_contact: OrgContactGetResponse
|
security_contact: Optional[OrgContactGetResponse] = None
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue