@ribajs/shopify
Version:
Shopify extension for Riba.js
17 lines (16 loc) • 356 B
TypeScript
export interface ShopifyCustomerAddress {
address1: string;
address2: string;
city: string;
company: string;
country: string;
country_code: string;
first_name: string;
id: number;
last_name: string;
phone: string;
province: string | null;
province_code: string | null;
street: string;
zip: string;
}