| 1234567891011121314151617181920212223242526 |
- 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
- }
|