PhysicalAddressPropsinterface

{
	name?: Nullish<string>;
	address: Nullish<AddressData>;
}
PropertyType
.nameNullish<string>
Nullish is the value or null or undefined.
.addressNullish<AddressData>
Nullish is the value or null or undefined. required

Props for PhysicalAddress — an optional name and a nullable AddressData object.