caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
20 lines (19 loc) • 368 B
text/typescript
/**
* Canvas progress item
* @author Gabe Abrams
*/
interface CanvasProgress {
id: number,
context_id: number,
context_type: string,
user_id: number,
tag: string,
completion: number,
workflow_state: string,
created_at: string,
updated_at: string,
message?: string | null,
results?: any | null,
url: string,
};
export default CanvasProgress;