/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Serializer for pathway self-enrollment request parameters. */ export type PathwaySelfEnrollmentRequest = { /** * User ID for self-enrollment */ user_id?: string; /** * Username for self-enrollment */ username?: string; /** * Pathway ID for self-enrollment */ pathway_id?: string; /** * Pathway key for self-enrollment */ pathway_key?: string; /** * Pathway slug for self-enrollment */ slug?: string; /** * Organization for the pathway */ org?: string; /** * Platform key for the pathway */ platform_key?: string; /** * Whether the enrollment should be active */ active?: boolean; };