| 1234567891011121314151617181920212223242526 |
- import { Uid, Str } from 'pinia-orm/dist/decorators'
- import ApiModel from '~/models/ApiModel'
- /**
- * AP2i Model : UserSearchItem
- *
- * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/Entity/Custom/Search/UserSearchItem.php
- */
- export default class UserSearchItem extends ApiModel {
- static override entity = 'search/users'
- @Uid()
- declare id: number | string
- @Str('')
- declare username: string
- @Str('')
- declare name: string
- @Str('')
- declare givenName: string
- @Str('')
- declare fullName: string
- }
|