Skip to main content
Module

x/gesso/src/PollChoices.ts>PollChoices

A TypeScript API client for Canvas LMS
Latest
class PollChoices
extends BaseApi
import { PollChoices } from "https://deno.land/x/gesso@v0.1.2/src/PollChoices.ts";

Constructors

new
PollChoices(config: Configuration)

Methods

createSinglePollChoice(
poll_id: string,
body?: unknown,
): Promise<Scope>
deletePollChoice(
poll_id: string,
id: string,
body?: unknown,
): Promise<Scope>
getSinglePollChoice(
poll_id: string,
id: string,
body?: unknown,
): Promise<PollChoice>
listPollChoicesInPoll(poll_id: string, body?: unknown): Promise<PollChoice>
updateSinglePollChoice(
poll_id: string,
id: string,
body?: unknown,
): Promise<Scope>