/** * Request serializer for BlankCourseInvitationView POST endpoint */ export type BlankCourseInvitationCreate = { /** * The course to create invitations for */ course_id: string; /** * The source identifier for the invitations */ source: string; /** * The number of blank invitations to create */ count: number; /** * Additional metadata for the invitations */ metadata?: Record; };