Interface WalletPerson

The WalletPerson object, maintains the person data for the wallet pass. This is used when creating a wallet pass.

interface WalletPerson {
    company?: string;
    email?: string;
    firstName?: string;
    lastName?: string;
    phone?: string;
}

Properties

company?: string

The person's company.

email?: string

The person's email address.

firstName?: string

The person's first name.

lastName?: string

The person's last name.

phone?: string

The person's phone number.