Interface ShippingAddress

This object represents a shipping address.

interface ShippingAddress {
    city: string;
    country_code: string;
    post_code: string;
    state: string;
    street_line1: string;
    street_line2: string;
}

Properties

city: string

City

country_code: string

Two-letter ISO 3166-1 alpha-2 country code

post_code: string

Address post code

state: string

State, if applicable

street_line1: string

First line for the address

street_line2: string

Second line for the address