/**
 * Generated by orval v8.5.3 🍺
 * Do not edit manually.
 * Api
 * CDACC Learning Plan AI API specification
 * OpenAPI spec version: 0.1.0
 */

export interface SessionRow {
  id: number;
  planId: number;
  weekNumber: number;
  sessionNumber: number;
  /** @nullable */
  topic?: string | null;
  /** @nullable */
  subtopic?: string | null;
  /** @nullable */
  learningOutcome?: string | null;
  /** @nullable */
  trainerActivity?: string | null;
  /** @nullable */
  traineeActivity?: string | null;
  /** @nullable */
  resources?: string | null;
  /** @nullable */
  assessmentMethod?: string | null;
  /** @nullable */
  duration?: string | null;
  /** @nullable */
  performanceCriteria?: string | null;
  /** @nullable */
  evidenceRequired?: string | null;
  /** @nullable */
  deliveryMode?: string | null;
  /** @nullable */
  practicalExercise?: string | null;
  /** @nullable */
  reflection?: string | null;
  /** @nullable */
  notes?: string | null;
  isLocked?: boolean;
  createdAt?: string;
}
