export interfaceContactDetails {
/**
* The name of the company.
*/
name?: string;
/**
* The phone number of the company.
*/
phone?: string;
/**
* The email address of the company.
*/
email: string;
/**
* The URL to the company's website.
*/
url?: string;
}