Cotisation.ts 504 B

1234567891011121314151617181920
  1. import { Num, Str, Uid } from 'pinia-orm/dist/decorators'
  2. import ApiResource from '~/models/ApiResource'
  3. /**
  4. * Ap2i ApiResource : Cotisation
  5. *
  6. * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/ApiResources/Cotisation/Cotisation.php
  7. */
  8. export default class Cotisation extends ApiResource {
  9. static entity = 'cotisations'
  10. @Uid()
  11. declare id: number | string | null
  12. @Str(null)
  13. declare alertState: string | null
  14. @Num(null)
  15. declare cotisationYear: number | null
  16. }