| 12345678910111213141516171819202122232425 |
- import { Num, Str, Uid } from 'pinia-orm/dist/decorators'
- import ApiResource from '~/models/ApiResource'
- import { IdField } from '~/models/decorators'
- /**
- * Ap2i ApiResource : Cotisation
- *
- * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/ApiResources/Cotisation/Cotisation.php
- */
- export default class Cotisation extends ApiResource {
- static entity = 'cotisations'
- @Uid()
- declare id: number | string | null
- @Str(null)
- declare alertState: string | null
- @Num(null)
- declare cotisationYear: number | null
- @IdField()
- @Num(0, { notNullable: true })
- declare organizationId: number
- }
|