interface AdminCustomerAddress {
    id: number;
    label: string;
    name: string;
    address_line1: string;
    address_line2: string;
    postal_code: string;
    city: string;
    country: string;
    is_default: boolean;
}

Properties

id: number
label: string
name: string
address_line1: string
address_line2: string
postal_code: string
city: string
country: string
is_default: boolean