Address for the Person
Signature:
export interface IPersonAddress
Properties
| Property | Type | Description |
|---|---|---|
| city | string | The city the address resides in |
| full | string | The full address |
| postCode | string | The postal code of the address |
IPersonAddress.city property
The city the address resides in
Signature:
city?: string;
IPersonAddress.full property
The full address
Signature:
full?: string;
IPersonAddress.postCode property
The postal code of the address
Signature:
postCode?: string;