caccl-api
Version:
A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.
14 lines (12 loc) • 311 B
text/typescript
interface CanvasSubmissionComment {
id: number,
author_id: number,
author_name: string,
// Abbreviated user object UserDisplay (see users API).
author: any,
comment: string,
created_at: string,
edited_at?: string | null,
media_comment?: any | null,
};
export default CanvasSubmissionComment;