import {Bool, Model, Num, Str, Uid} from "@vuex-orm/core"; export class LicenceCmfOrganizationER extends Model { static entity = 'licence_cmf_' @Uid() id!: number | string | null @Str(null, {nullable: true}) format!: string | null @Num(0, {nullable: false}) requesterId!: number | string | null @Bool(false, {nullable: false}) async!: boolean }