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