/** * 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 Payments from './payments'; export default class Chagebacks extends Model { protected static adapter: any; id: string; reason: string; status: string; amount: number; invoice: Invoices; payment: Payments; date_chargeback: string; date_dispute_due: string; created_at: Date; updated_at: Date; deleted_at: Date; }