/** * 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 { Model } from '@nuinalp/api-core/browser'; export default class PaymentHistory extends Model { protected static adapter: any; id: string; status: string; receipt_url: string; value: string; created_at: string; updated_at: string; }