qus-canvas
Version:
client api for canvas
24 lines • 608 B
TypeScript
export interface OutcomeGroupInterface {
id: number;
title: string;
vendorGuid: string | null;
url: string;
subgroupsUrl: string;
outcomesUrl: string;
canEdit: boolean;
importUrl: string;
parentOutcomeGroup: {
id: number;
title: string;
vendorGuid: string | null;
url: string;
subgroupsUrl: string;
outcomesUrl: string;
canEdit: boolean;
};
contextNumber: number;
contextType: string;
description: string | null;
outcomeGroupNumber: number;
}
//# sourceMappingURL=outcome-group.interface.d.ts.map