import {Model, Attr, Str} from '@vuex-orm/core' export class Organization extends Model{ static entity = 'organizations' @Attr(null) id!: number | null @Str('', {nullable: false}) name!: string @Str('', {nullable: true}) legalStatus!: string @Str('', {nullable: true}) principalType!: string }