import { ID } from '../../commonStateTypes/common'; export interface AddressPayload { address_id: ID; city: string; country: string; create_time: string; postal_code: string; state: string; street: string[]; update_time: string; country_code?: string | null; hash_value?: string; latitude?: number | null; longitude?: number | null; }