/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ /** * 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; };