TypeOfPracticeTree.ts 525 B

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