caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
18 lines (17 loc) • 469 B
TypeScript
interface CanvasPage {
page_id: number;
url: string;
title: string;
created_at: string;
updated_at?: string | null;
hide_from_students?: boolean | null;
editing_roles?: string | null;
last_edited_by?: any | null;
body?: string | null;
published?: boolean | null;
front_page?: boolean | null;
locked_for_user?: boolean | null;
lock_info?: any | null;
lock_explanation?: string | null;
}
export default CanvasPage;