import IAddress from '../Address'; export default interface IPhotoShootEmail { readonly cart_ref: string; readonly customer_name: string; readonly shipping_address: IAddress; readonly pickup_store: string; readonly item_wanted: { item_name: string; item_subname: string; }; readonly mailto_link: string; readonly english: boolean; readonly [key: string]: any; }