import { Uid, Str } from 'pinia-orm/dist/decorators' import ApiModel from '~/models/ApiModel' /** * AP2i Model : AuthUrl * * @see https://gitlab.2iopenservice.com/opentalent/ap2i/-/blob/develop/src/ApiResource/HelloAsso/AuthUrl.php */ export default class AuthUrl extends ApiModel { static override entity = 'helloasso/auth-url' @Uid() declare id: number | string @Str('') declare authUrl: string @Str('') declare challengeVerifier: string }