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