got further

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-11-28 15:17:44 -08:00
parent 373b5ef4ae
commit 058b4dc40a
76 changed files with 1478 additions and 752 deletions

View File

@ -43,8 +43,10 @@ class BillingInfo:
address: Union[Unset, NewAddress]
if isinstance(_address, Unset):
address = UNSET
if _address is None:
address = UNSET
else:
address = _address # type: ignore[arg-type]
address = NewAddress.from_dict(_address)
name = d.pop("name", UNSET)