import {Str, Model, Uid, Attr} from '@vuex-orm/core' export class ContactPoint extends Model { static entity = 'contact_points' @Uid() id!: number | string | null @Str('PRINCIPAL', { nullable: false }) contactType!: string @Str(null, { nullable: true }) email!: string @Str(null, { nullable: true }) emailInvalid!: string @Str(null, { nullable: true }) telphone!: string @Str(null, { nullable: true }) telphoneInvalid!: string @Str(null, { nullable: true }) mobilPhone!: string @Str(null, { nullable: true }) mobilPhoneInvalid!: string @Str(null, { nullable: true }) faxNumber!: string @Str(null, { nullable: true }) faxNumberInvalid!: string @Attr([]) organization!: [] }