Type Alias CoursePostInterface

CoursePostInterface: {
    title: string;
    visibility: CourseVisibility;
    thumbnailUrl?: string;
    contentType: CourseContentType;
    description: string;
    bucketVideoUrl: string;
    postMaterials: CoursePostMaterialInterface[];
}

Type declaration