/** * 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'; export default class BankAccount extends Model { protected static adapter: any; bank_number: string; agency_number: string; account_number: string; account_complement_number?: string; account_type?: string; account_holder_name?: string; account_holder_document: string; created_at: Date; updated_at: Date; deleted_at: Date; }