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