forked from sr2/cloud-api
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):
|
||||
name: str
|
||||
status: Status
|
||||
owner_contact: OrgContactGetResponse
|
||||
billing_contact: OrgContactGetResponse
|
||||
security_contact: OrgContactGetResponse
|
||||
owner_contact: Optional[OrgContactGetResponse] = None
|
||||
billing_contact: Optional[OrgContactGetResponse] = None
|
||||
security_contact: Optional[OrgContactGetResponse] = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue