/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * Request serializer for CourseInvitationRedemptionView POST endpoint */ export type CourseInvitationRedemption = { /** * The course ID for the invitation */ course_id: string; /** * The source identifier for the invitation */ source: string; /** * The email to associate with the invitation */ email?: string; /** * The username to associate with the invitation */ username?: string; /** * Additional metadata for the invitation */ metadata?: Record; };