/** * Copyright (c) 2020 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 { Model } from '@nuinalp/api-core/browser'; import Invoices from './invoices'; import { Customer } from '@nuinalp/apis/payments'; export default class Transactions extends Model { protected static adapter: any; id?: string; value: string; type?: string; description: string; customer: Customer; id_invoice: string; note: string; medadata: Record; invoice: Invoices; created_at: Date; updated_at: Date; deleted_at: Date; }