/** * Copyright (c) 2023 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { States } from 'src/payments'; import Cities from './cities'; import Countries from './countries'; import Neighborhoods from './neighborhoods'; export default class Addresses { protected static adapter: any; id: string; postal_code: string; street: string; country: Countries; state: States; city: Cities; neighborhood: Neighborhoods; latitude: string; longitude: string; created_at: string; updated_at: string; }