| 12345678910111213141516171819202122232425262728293031 |
- import { Num, Uid, Str } from 'pinia-orm/dist/decorators'
- import ApiResource from '~/models/ApiResource'
- import { IdField } from '~/models/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
- }
|