| 123456789101112131415161718 |
- import { Uid, Attr } from 'pinia-orm/dist/decorators'
- import ApiResource from '~/models/ApiResource'
- import type { ResourceTreeContent } from '~/types/data'
- /**
- * AP2i Model : SearchPlaceItem
- *
- * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/ApiResource/Tree/TypeOfPracticeTree.php
- */
- export default class TypeOfPracticeTree extends ApiResource {
- static override entity = 'tree/type_of_practices'
- @Uid()
- declare id: number | string
- @Attr({})
- declare content: ResourceTreeContent
- }
|