/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { HumanSupportTicketStatusEnum } from './HumanSupportTicketStatusEnum'; /** * serializer interface intended for students/ non-admin users. * This limits students to only update the subject and description of a ticket. */ export type HumanSupportTicket = { readonly id: number; readonly username: string; readonly email: string; readonly full_name: string; /** * edX user ID */ readonly user: number; readonly session: string; subject: string; description: string; status?: HumanSupportTicketStatusEnum; readonly mentor_id: string; readonly created_at: string; readonly updated_at: string; readonly resolved_at: string | null; };