Member Junction
    Preparing search index...
    interface CourseDetailsData {
        averageRating?: number;
        categories: string[];
        certificateEnabled: boolean;
        createdAt?: string;
        currency: string;
        description?: string;
        duration?: number;
        durationText?: string;
        id: string;
        imageUrl?: string;
        instructors?: CourseInstructor[];
        language: string;
        level: string;
        modules?: CourseModule[];
        originalPrice?: number;
        price: number;
        publishedAt?: string;
        shortDescription?: string;
        slug?: string;
        stats?: CourseStats;
        status: string;
        tags: string[];
        title: string;
        totalEnrollments: number;
        totalLessons?: number;
        totalModules?: number;
        totalRatings: number;
        updatedAt?: string;
        videoUrl?: string;
    }
    Index

    Properties

    averageRating?: number
    categories: string[]
    certificateEnabled: boolean
    createdAt?: string
    currency: string
    description?: string
    duration?: number
    durationText?: string
    id: string
    imageUrl?: string
    instructors?: CourseInstructor[]
    language: string
    level: string
    modules?: CourseModule[]
    originalPrice?: number
    price: number
    publishedAt?: string
    shortDescription?: string
    slug?: string
    stats?: CourseStats
    status: string
    tags: string[]
    title: string
    totalEnrollments: number
    totalLessons?: number
    totalModules?: number
    totalRatings: number
    updatedAt?: string
    videoUrl?: string