Interface NationalIdentification

National Identification details.

{
number: "123456789",
country: "US"
}
interface NationalIdentification {
    country: string;
    number: string;
}

Properties

Properties

country: string
number: string