The seller's contact information.

ContactInformation

interface ContactInformation {
    email?: string;
    name: string;
    phoneNumber: string;
}

Properties

email?: string

The email address.

ContactInformation

name: string

The contact's name.

ContactInformation

phoneNumber: string

The phone number.

ContactInformation