Information about the buyer.

Export

Buyer

interface Buyer {
    buyerId?: string;
    isPrimeMember?: boolean;
    name?: string;
    phone?: string;
}

Properties

buyerId?: string

The identifier of the buyer.

Memberof

Buyer

isPrimeMember?: boolean

When true, the service is for an Amazon Prime buyer.

Memberof

Buyer

name?: string

The name of the buyer.

Memberof

Buyer

phone?: string

The phone number of the buyer.

Memberof

Buyer