|
@@ -1,5 +1,6 @@
|
|
|
import { Bool, Num, Uid } from 'pinia-orm/dist/decorators'
|
|
import { Bool, Num, Uid } from 'pinia-orm/dist/decorators'
|
|
|
import ApiResource from '~/models/ApiResource'
|
|
import ApiResource from '~/models/ApiResource'
|
|
|
|
|
+import {IdField} from "~/models/decorators";
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* The Mobyt user status of an organization
|
|
* The Mobyt user status of an organization
|
|
@@ -12,6 +13,7 @@ export default class MobytUserStatus extends ApiResource {
|
|
|
@Uid()
|
|
@Uid()
|
|
|
declare id: number | string | null
|
|
declare id: number | string | null
|
|
|
|
|
|
|
|
|
|
+ @IdField()
|
|
|
@Num(0, { notNullable: true })
|
|
@Num(0, { notNullable: true })
|
|
|
declare organizationId: number
|
|
declare organizationId: number
|
|
|
|
|
|