/** * Response serializer for CourseLicenseAccessRequestUserView GET endpoint */ export type CourseAccessRequestStatusResponse = { /** * Whether the access request is active */ active: boolean; /** * Whether the access request has been approved (null if not reviewed) */ approved: boolean | null; /** * Whether an access request exists for this user and course */ exists: boolean; };