Interface OrderInfo

This object represents information about an order.

interface OrderInfo {
    email?: string;
    name?: string;
    phone_number?: string;
    shipping_address?: ShippingAddress;
}

Properties

email?: string

User email

name?: string

User name

phone_number?: string

User's phone number

shipping_address?: ShippingAddress

User shipping address