| 1234567891011121314151617181920212223242526 |
- import { Attr, Str, Bool, Model } from '@vuex-orm/core'
- export class BankAccount extends Model {
- static entity = 'bank_accounts'
- @Attr(null)
- 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
- }
|