import {Str, Bool, Model, Uid} from '@vuex-orm/core' export class BankAccount extends Model { static entity = 'bank_accounts' @Uid() id!: number | null @Str('', { nullable: true }) bankName!: string @Str('', { nullable: true }) bic!: string @Str('', { nullable: true }) iban!: string @Str('', { nullable: true }) debitAddress!: string @Str('', { nullable: true }) holder!: string @Bool(false, { nullable: false }) principal!: boolean }