Function update_course_review

Source
pub fn update_course_review(
    client: &TestMyCodeClient,
    course_id: u32,
    review_id: u32,
    review_body: Option<String>,
    mark_as_read: Option<bool>,
) -> Result<(), TestMyCodeClientError>
Expand description

put /api/v8/core/courses/{course_id}/reviews/{review_id} Update existing review. Review text can be updated by using review_body. Review can be marked as read or unread by setting mark_as_read.