/** * Response serializer for bulk invitation creation */ export type BulkCourseInvitationResponse = { /** * Number of successfully created invitations */ successes: number; /** * List of error codes for failed invitations */ error_codes: Array; };