| 1234567891011121314151617181920212223242526272829303132 |
- import { Bool, Num, Uid } from 'pinia-orm/dist/decorators'
- import ApiResource from '~/models/ApiResource'
- import { IdField } from '~/models/decorators'
- import { Str } from 'pinia-orm/decorators'
- /**
- * The Mobyt user status of an organization
- *
- * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/ApiResources/Mobyt/MobytUserStatus.php
- */
- export default class HelloAsso extends ApiResource {
- static override entity = 'helloasso'
- @Uid()
- declare id: number | string | null
- @IdField()
- @Num(0, { notNullable: true })
- declare organizationId: number
- @Str(null)
- declare challengeVerifier: string
- @Str(null)
- declare token: string
- @Str(null)
- declare refreshToken: string
- @Str(null)
- declare organizationSlug: string
- }
|