Interface ContactPoint

Represents contact information for a person or organization.

interface ContactPoint {
    email: string;
    name: string;
}

Properties

Properties

email: string

The email address of the contact person.

"jane.doe@techcorp.com"
name: string

The name of the contact person.

"Jane Doe"