From 5f867806a4a9c795d2cb89c98327ba24e49adc5a Mon Sep 17 00:00:00 2001 From: James Cook Date: Sat, 12 Mar 2022 12:10:05 +0000 Subject: [PATCH] docs: update docs --- docs/assets/highlight.css | 49 ------------------- docs/assets/main.js | 2 +- docs/assets/search.js | 2 +- .../classes/baseClient.ClasschartsClient.html | 37 ++++++++++++++ docs/classes/client.ClasschartsClient.html | 37 -------------- .../dummyClient.ClasschartsClient.html | 35 +++++++++++++ .../parent.ClasschartsParentClient.html | 44 ----------------- .../parentClient.ClasschartsParentClient.html | 48 ++++++++++++++++++ .../student.ClasschartsStudentClient.html | 41 ---------------- ...tudentClient.ClasschartsStudentClient.html | 41 ++++++++++++++++ docs/index.html | 29 +++++++++-- docs/interfaces/types.ActivityPoint.html | 2 +- docs/interfaces/types.Announcement.html | 2 +- docs/interfaces/types.Badge.html | 2 +- docs/interfaces/types.BehaviourResponse.html | 2 +- .../types.BehaviourTimelinePoint.html | 2 +- docs/interfaces/types.Detention.html | 2 +- docs/interfaces/types.GetActivityOptions.html | 8 +-- .../interfaces/types.GetBehaviourOptions.html | 6 +-- docs/interfaces/types.GetHomeworkOptions.html | 8 +-- docs/interfaces/types.GetLessonsOptions.html | 4 +- docs/interfaces/types.Homework.html | 2 +- docs/interfaces/types.Lesson.html | 2 +- .../types.LessonPupilBehaviour.html | 2 +- docs/interfaces/types.Pupil.html | 1 + docs/interfaces/types.PupilEvent.html | 2 +- docs/interfaces/types.Student.html | 2 +- .../types.ValidatedHomeworkAttachment.html | 2 +- docs/modules.html | 2 +- docs/modules/baseClient.html | 1 + docs/modules/client.html | 1 - docs/modules/consts.html | 2 +- docs/modules/dummyClient.html | 1 + docs/modules/index.html | 2 +- docs/modules/parent.html | 1 - docs/modules/parentClient.html | 1 + docs/modules/student.html | 1 - docs/modules/studentClient.html | 1 + docs/modules/types.html | 2 +- 39 files changed, 222 insertions(+), 209 deletions(-) create mode 100644 docs/classes/baseClient.ClasschartsClient.html delete mode 100644 docs/classes/client.ClasschartsClient.html create mode 100644 docs/classes/dummyClient.ClasschartsClient.html delete mode 100644 docs/classes/parent.ClasschartsParentClient.html create mode 100644 docs/classes/parentClient.ClasschartsParentClient.html delete mode 100644 docs/classes/student.ClasschartsStudentClient.html create mode 100644 docs/classes/studentClient.ClasschartsStudentClient.html create mode 100644 docs/interfaces/types.Pupil.html create mode 100644 docs/modules/baseClient.html delete mode 100644 docs/modules/client.html create mode 100644 docs/modules/dummyClient.html delete mode 100644 docs/modules/parent.html create mode 100644 docs/modules/parentClient.html delete mode 100644 docs/modules/student.html create mode 100644 docs/modules/studentClient.html diff --git a/docs/assets/highlight.css b/docs/assets/highlight.css index 9b54435..6dd4eef 100644 --- a/docs/assets/highlight.css +++ b/docs/assets/highlight.css @@ -1,71 +1,22 @@ :root { - --light-hl-0: #AF00DB; - --dark-hl-0: #C586C0; - --light-hl-1: #000000; - --dark-hl-1: #D4D4D4; - --light-hl-2: #001080; - --dark-hl-2: #9CDCFE; - --light-hl-3: #A31515; - --dark-hl-3: #CE9178; - --light-hl-4: #0000FF; - --dark-hl-4: #569CD6; - --light-hl-5: #795E26; - --dark-hl-5: #DCDCAA; - --light-hl-6: #0070C1; - --dark-hl-6: #4FC1FF; --light-code-background: #F5F5F5; --dark-code-background: #1E1E1E; } @media (prefers-color-scheme: light) { :root { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); --code-background: var(--light-code-background); } } @media (prefers-color-scheme: dark) { :root { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); --code-background: var(--dark-code-background); } } body.light { - --hl-0: var(--light-hl-0); - --hl-1: var(--light-hl-1); - --hl-2: var(--light-hl-2); - --hl-3: var(--light-hl-3); - --hl-4: var(--light-hl-4); - --hl-5: var(--light-hl-5); - --hl-6: var(--light-hl-6); --code-background: var(--light-code-background); } body.dark { - --hl-0: var(--dark-hl-0); - --hl-1: var(--dark-hl-1); - --hl-2: var(--dark-hl-2); - --hl-3: var(--dark-hl-3); - --hl-4: var(--dark-hl-4); - --hl-5: var(--dark-hl-5); - --hl-6: var(--dark-hl-6); --code-background: var(--dark-code-background); } -.hl-0 { color: var(--hl-0); } -.hl-1 { color: var(--hl-1); } -.hl-2 { color: var(--hl-2); } -.hl-3 { color: var(--hl-3); } -.hl-4 { color: var(--hl-4); } -.hl-5 { color: var(--hl-5); } -.hl-6 { color: var(--hl-6); } pre, code { background: var(--code-background); } diff --git a/docs/assets/main.js b/docs/assets/main.js index 99f331b..54869f4 100644 --- a/docs/assets/main.js +++ b/docs/assets/main.js @@ -1,5 +1,5 @@ (()=>{var Ce=Object.create;var J=Object.defineProperty;var Pe=Object.getOwnPropertyDescriptor;var Oe=Object.getOwnPropertyNames;var Re=Object.getPrototypeOf,_e=Object.prototype.hasOwnProperty;var Me=t=>J(t,"__esModule",{value:!0});var Fe=(t,e)=>()=>(e||t((e={exports:{}}).exports,e),e.exports);var De=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let i of Oe(e))!_e.call(t,i)&&(r||i!=="default")&&J(t,i,{get:()=>e[i],enumerable:!(n=Pe(e,i))||n.enumerable});return t},Ae=(t,e)=>De(Me(J(t!=null?Ce(Re(t)):{},"default",!e&&t&&t.__esModule?{get:()=>t.default,enumerable:!0}:{value:t,enumerable:!0})),t);var de=Fe((ce,he)=>{(function(){var t=function(e){var r=new t.Builder;return r.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),r.searchPipeline.add(t.stemmer),e.call(r,r),r.build()};t.version="2.3.9";t.utils={},t.utils.warn=function(e){return function(r){e.console&&console.warn&&console.warn(r)}}(this),t.utils.asString=function(e){return e==null?"":e.toString()},t.utils.clone=function(e){if(e==null)return e;for(var r=Object.create(null),n=Object.keys(e),i=0;i0){var h=t.utils.clone(r)||{};h.position=[a,l],h.index=s.length,s.push(new t.Token(n.slice(a,o),h))}a=o+1}}return s},t.tokenizer.separator=/[\s\-]+/;t.Pipeline=function(){this._stack=[]},t.Pipeline.registeredFunctions=Object.create(null),t.Pipeline.registerFunction=function(e,r){r in this.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+r),e.label=r,t.Pipeline.registeredFunctions[e.label]=e},t.Pipeline.warnIfFunctionNotRegistered=function(e){var r=e.label&&e.label in this.registeredFunctions;r||t.utils.warn(`Function is not registered with pipeline. This may cause problems when serialising the index. -`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),p=s.str.charAt(1),v;p in s.node.edges?v=s.node.edges[p]:(v=new t.TokenSet,s.node.edges[p]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ce=="object"?he.exports=r():e.lunr=r()}(this,function(){return t})})()});var le=[];function N(t,e){le.push({selector:e,constructor:t})}var X=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var Q=class{constructor(e){this.el=e.el}};var Z=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ee=class extends Z{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",K(()=>this.onScroll(),10)),window.addEventListener("resize",K(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;let e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e),this.hideShowToolbar()}hideShowToolbar(){var r;let e=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(r=this.secondaryNav)==null||r.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},I=ee;I.instance=new ee;var te=class extends Q{constructor(e){super(e);this.anchors=[];this.index=-1;I.instance.addEventListener("resize",()=>this.onResize()),I.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let e=window.location.href;e.indexOf("#")!=-1&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let n=r.href;if(n.indexOf("#")==-1||n.substr(0,e.length)!=e)return;let i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;!s||!o||this.anchors.push({link:o,anchor:s,position:0})}),this.onResize()}onResize(){let e;for(let n=0,i=this.anchors.length;nn.position-i.position);let r=new CustomEvent("scroll",{detail:{scrollTop:I.instance.scrollTop}});this.onScroll(r)}onScroll(e){let r=e.detail.scrollTop+5,n=this.anchors,i=n.length-1,s=this.index;for(;s>-1&&n[s].position>r;)s-=1;for(;s-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=s,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var fe=Ae(de());function pe(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ve(t,n,r,s)}function Ve(t,e,r,n){r.addEventListener("input",ue(()=>{ze(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?me(e,-1):s.key==="ArrowDown"?me(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=fe.Index.load(window.searchData.index))}function ze(t,e,r,n){if(He(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=n.index.search(`*${i}*`);for(let o=0,a=Math.min(10,s.length);o${ve(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes;let p=document.createElement("a");p.href=n.base+u.url,p.classList.add("tsd-kind-icon"),p.innerHTML=l,h.append(p),e.appendChild(h)}}function me(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Ne(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function ve(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(re(t.substring(s,o)),`${re(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(re(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function re(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var ge=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},ne=class extends Q{constructor(e){super(e);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(r=>{r.addEventListener("touchstart",n=>this.onClick(n)),r.addEventListener("click",n=>this.onClick(n))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;let r=this.groups[e];if(this.index>-1){let n=this.groups[this.index];n.removeClass("current").addClass("fade-out"),r.addClass("current"),r.addClass("fade-in"),I.instance.triggerResize(),setTimeout(()=>{n.removeClass("fade-out"),r.removeClass("fade-in")},300)}else r.addClass("current"),I.instance.triggerResize();this.index=e}createGroups(){let e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;let r=this.container.children;this.groups=[];for(let n=0;n{r.signature===e.currentTarget&&this.setIndex(n)})}};var C="mousedown",ye="mousemove",_="mouseup",G={x:0,y:0},xe=!1,ie=!1,Be=!1,A=!1,Le=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Le?"is-mobile":"not-mobile");Le&&"ontouchstart"in document.documentElement&&(Be=!0,C="touchstart",ye="touchmove",_="touchend");document.addEventListener(C,t=>{ie=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;G.y=e.pageY||0,G.x=e.pageX||0});document.addEventListener(ye,t=>{if(!!ie&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=G.x-(e.pageX||0),n=G.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ie=!1});document.addEventListener("click",t=>{xe&&(t.preventDefault(),t.stopImmediatePropagation(),xe=!1)});var se=class extends Q{constructor(e){super(e);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(C,r=>this.onDocumentPointerDown(r)),document.addEventListener(_,r=>this.onDocumentPointerUp(r))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(e){A||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!A&&this.active&&e.target.closest(".col-menu")){let r=e.target.closest("a");if(r){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout(()=>this.setActive(!1),250)}}}};var oe=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},ae=class extends oe{initialize(){let e=document.querySelector("#tsd-filter-"+this.key);!e||(this.checkbox=e,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(e,r){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return e=="true"}toLocalStorage(e){return e?"true":"false"}},Ee=class extends oe{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;let r=()=>{this.select.classList.add("active")},n=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",n),this.select.querySelectorAll("li").forEach(i=>{i.addEventListener(_,s=>{e.classList.remove("active"),this.setValue(s.target.dataset.value||"")})}),document.addEventListener(C,i=>{this.select.contains(i.target)||this.select.classList.remove("active")})}handleValueChange(e,r){this.select.querySelectorAll("li.selected").forEach(s=>{s.classList.remove("selected")});let n=this.select.querySelector('li[data-value="'+r+'"]'),i=this.select.querySelector(".tsd-select-label");n&&i&&(n.classList.add("selected"),i.textContent=n.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+r)}fromLocalStorage(e){return e}toLocalStorage(e){return e}},Y=class extends Q{constructor(e){super(e);this.optionVisibility=new Ee("visibility","private"),this.optionInherited=new ae("inherited",!0),this.optionExternals=new ae("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function be(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,we(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),we(t.value)})}function we(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}pe();N(te,".menu-highlight");N(ne,".tsd-signatures");N(se,"a[data-toggle]");Y.isSupported()?N(Y,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&be(Te);var qe=new X;Object.defineProperty(window,"app",{value:qe});})(); +`,e)},t.Pipeline.load=function(e){var r=new t.Pipeline;return e.forEach(function(n){var i=t.Pipeline.registeredFunctions[n];if(i)r.add(i);else throw new Error("Cannot load unregistered function: "+n)}),r},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(r){t.Pipeline.warnIfFunctionNotRegistered(r),this._stack.push(r)},this)},t.Pipeline.prototype.after=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");n=n+1,this._stack.splice(n,0,r)},t.Pipeline.prototype.before=function(e,r){t.Pipeline.warnIfFunctionNotRegistered(r);var n=this._stack.indexOf(e);if(n==-1)throw new Error("Cannot find existingFn");this._stack.splice(n,0,r)},t.Pipeline.prototype.remove=function(e){var r=this._stack.indexOf(e);r!=-1&&this._stack.splice(r,1)},t.Pipeline.prototype.run=function(e){for(var r=this._stack.length,n=0;n1&&(oe&&(n=s),o!=e);)i=n-r,s=r+Math.floor(i/2),o=this.elements[s*2];if(o==e||o>e)return s*2;if(ou?h+=2:a==u&&(r+=n[l+1]*i[h+1],l+=2,h+=2);return r},t.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},t.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),r=1,n=0;r0){var o=s.str.charAt(0),a;o in s.node.edges?a=s.node.edges[o]:(a=new t.TokenSet,s.node.edges[o]=a),s.str.length==1&&(a.final=!0),i.push({node:a,editsRemaining:s.editsRemaining,str:s.str.slice(1)})}if(s.editsRemaining!=0){if("*"in s.node.edges)var u=s.node.edges["*"];else{var u=new t.TokenSet;s.node.edges["*"]=u}if(s.str.length==0&&(u.final=!0),i.push({node:u,editsRemaining:s.editsRemaining-1,str:s.str}),s.str.length>1&&i.push({node:s.node,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)}),s.str.length==1&&(s.node.final=!0),s.str.length>=1){if("*"in s.node.edges)var l=s.node.edges["*"];else{var l=new t.TokenSet;s.node.edges["*"]=l}s.str.length==1&&(l.final=!0),i.push({node:l,editsRemaining:s.editsRemaining-1,str:s.str.slice(1)})}if(s.str.length>1){var h=s.str.charAt(0),p=s.str.charAt(1),v;p in s.node.edges?v=s.node.edges[p]:(v=new t.TokenSet,s.node.edges[p]=v),s.str.length==1&&(v.final=!0),i.push({node:v,editsRemaining:s.editsRemaining-1,str:h+s.str.slice(2)})}}}return n},t.TokenSet.fromString=function(e){for(var r=new t.TokenSet,n=r,i=0,s=e.length;i=e;r--){var n=this.uncheckedNodes[r],i=n.child.toString();i in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[i]:(n.child._str=i,this.minimizedNodes[i]=n.child),this.uncheckedNodes.pop()}};t.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},t.Index.prototype.search=function(e){return this.query(function(r){var n=new t.QueryParser(e,r);n.parse()})},t.Index.prototype.query=function(e){for(var r=new t.Query(this.fields),n=Object.create(null),i=Object.create(null),s=Object.create(null),o=Object.create(null),a=Object.create(null),u=0;u1?this._b=1:this._b=e},t.Builder.prototype.k1=function(e){this._k1=e},t.Builder.prototype.add=function(e,r){var n=e[this._ref],i=Object.keys(this._fields);this._documents[n]=r||{},this.documentCount+=1;for(var s=0;s=this.length)return t.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},t.QueryLexer.prototype.width=function(){return this.pos-this.start},t.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},t.QueryLexer.prototype.backup=function(){this.pos-=1},t.QueryLexer.prototype.acceptDigitRun=function(){var e,r;do e=this.next(),r=e.charCodeAt(0);while(r>47&&r<58);e!=t.QueryLexer.EOS&&this.backup()},t.QueryLexer.prototype.more=function(){return this.pos1&&(e.backup(),e.emit(t.QueryLexer.TERM)),e.ignore(),e.more())return t.QueryLexer.lexText},t.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.EDIT_DISTANCE),t.QueryLexer.lexText},t.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(t.QueryLexer.BOOST),t.QueryLexer.lexText},t.QueryLexer.lexEOS=function(e){e.width()>0&&e.emit(t.QueryLexer.TERM)},t.QueryLexer.termSeparator=t.tokenizer.separator,t.QueryLexer.lexText=function(e){for(;;){var r=e.next();if(r==t.QueryLexer.EOS)return t.QueryLexer.lexEOS;if(r.charCodeAt(0)==92){e.escapeCharacter();continue}if(r==":")return t.QueryLexer.lexField;if(r=="~")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexEditDistance;if(r=="^")return e.backup(),e.width()>0&&e.emit(t.QueryLexer.TERM),t.QueryLexer.lexBoost;if(r=="+"&&e.width()===1||r=="-"&&e.width()===1)return e.emit(t.QueryLexer.PRESENCE),t.QueryLexer.lexText;if(r.match(t.QueryLexer.termSeparator))return t.QueryLexer.lexTerm}},t.QueryParser=function(e,r){this.lexer=new t.QueryLexer(e),this.query=r,this.currentClause={},this.lexemeIdx=0},t.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=t.QueryParser.parseClause;e;)e=e(this);return this.query},t.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},t.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},t.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},t.QueryParser.parseClause=function(e){var r=e.peekLexeme();if(r!=null)switch(r.type){case t.QueryLexer.PRESENCE:return t.QueryParser.parsePresence;case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+r.type;throw r.str.length>=1&&(n+=" with value '"+r.str+"'"),new t.QueryParseError(n,r.start,r.end)}},t.QueryParser.parsePresence=function(e){var r=e.consumeLexeme();if(r!=null){switch(r.str){case"-":e.currentClause.presence=t.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=t.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+r.str+"'";throw new t.QueryParseError(n,r.start,r.end)}var i=e.peekLexeme();if(i==null){var n="expecting term or field, found nothing";throw new t.QueryParseError(n,r.start,r.end)}switch(i.type){case t.QueryLexer.FIELD:return t.QueryParser.parseField;case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var n="expecting term or field, found '"+i.type+"'";throw new t.QueryParseError(n,i.start,i.end)}}},t.QueryParser.parseField=function(e){var r=e.consumeLexeme();if(r!=null){if(e.query.allFields.indexOf(r.str)==-1){var n=e.query.allFields.map(function(o){return"'"+o+"'"}).join(", "),i="unrecognised field '"+r.str+"', possible fields: "+n;throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.fields=[r.str];var s=e.peekLexeme();if(s==null){var i="expecting term, found nothing";throw new t.QueryParseError(i,r.start,r.end)}switch(s.type){case t.QueryLexer.TERM:return t.QueryParser.parseTerm;default:var i="expecting term, found '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseTerm=function(e){var r=e.consumeLexeme();if(r!=null){e.currentClause.term=r.str.toLowerCase(),r.str.indexOf("*")!=-1&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(n==null){e.nextClause();return}switch(n.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+n.type+"'";throw new t.QueryParseError(i,n.start,n.end)}}},t.QueryParser.parseEditDistance=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="edit distance must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.editDistance=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},t.QueryParser.parseBoost=function(e){var r=e.consumeLexeme();if(r!=null){var n=parseInt(r.str,10);if(isNaN(n)){var i="boost must be numeric";throw new t.QueryParseError(i,r.start,r.end)}e.currentClause.boost=n;var s=e.peekLexeme();if(s==null){e.nextClause();return}switch(s.type){case t.QueryLexer.TERM:return e.nextClause(),t.QueryParser.parseTerm;case t.QueryLexer.FIELD:return e.nextClause(),t.QueryParser.parseField;case t.QueryLexer.EDIT_DISTANCE:return t.QueryParser.parseEditDistance;case t.QueryLexer.BOOST:return t.QueryParser.parseBoost;case t.QueryLexer.PRESENCE:return e.nextClause(),t.QueryParser.parsePresence;default:var i="Unexpected lexeme type '"+s.type+"'";throw new t.QueryParseError(i,s.start,s.end)}}},function(e,r){typeof define=="function"&&define.amd?define(r):typeof ce=="object"?he.exports=r():e.lunr=r()}(this,function(){return t})})()});var le=[];function N(t,e){le.push({selector:e,constructor:t})}var X=class{constructor(){this.createComponents(document.body)}createComponents(e){le.forEach(r=>{e.querySelectorAll(r.selector).forEach(n=>{n.dataset.hasInstance||(new r.constructor({el:n}),n.dataset.hasInstance=String(!0))})})}};var Q=class{constructor(e){this.el=e.el}};var Z=class{constructor(){this.listeners={}}addEventListener(e,r){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push(r)}removeEventListener(e,r){if(!(e in this.listeners))return;let n=this.listeners[e];for(let i=0,s=n.length;i{let r=Date.now();return(...n)=>{r+e-Date.now()<0&&(t(...n),r=Date.now())}};var ee=class extends Z{constructor(){super();this.scrollTop=0;this.lastY=0;this.width=0;this.height=0;this.showToolbar=!0;this.toolbar=document.querySelector(".tsd-page-toolbar"),this.secondaryNav=document.querySelector(".tsd-navigation.secondary"),window.addEventListener("scroll",K(()=>this.onScroll(),10)),window.addEventListener("resize",K(()=>this.onResize(),10)),this.onResize(),this.onScroll()}triggerResize(){let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onResize(){this.width=window.innerWidth||0,this.height=window.innerHeight||0;let e=new CustomEvent("resize",{detail:{width:this.width,height:this.height}});this.dispatchEvent(e)}onScroll(){this.scrollTop=window.scrollY||0;let e=new CustomEvent("scroll",{detail:{scrollTop:this.scrollTop}});this.dispatchEvent(e),this.hideShowToolbar()}hideShowToolbar(){var r;let e=this.showToolbar;this.showToolbar=this.lastY>=this.scrollTop||this.scrollTop<=0,e!==this.showToolbar&&(this.toolbar.classList.toggle("tsd-page-toolbar--hide"),(r=this.secondaryNav)==null||r.classList.toggle("tsd-navigation--toolbar-hide")),this.lastY=this.scrollTop}},I=ee;I.instance=new ee;var te=class extends Q{constructor(e){super(e);this.anchors=[];this.index=-1;I.instance.addEventListener("resize",()=>this.onResize()),I.instance.addEventListener("scroll",r=>this.onScroll(r)),this.createAnchors()}createAnchors(){let e=window.location.href;e.indexOf("#")!=-1&&(e=e.substr(0,e.indexOf("#"))),this.el.querySelectorAll("a").forEach(r=>{let n=r.href;if(n.indexOf("#")==-1||n.substr(0,e.length)!=e)return;let i=n.substr(n.indexOf("#")+1),s=document.querySelector("a.tsd-anchor[name="+i+"]"),o=r.parentNode;!s||!o||this.anchors.push({link:o,anchor:s,position:0})}),this.onResize()}onResize(){let e;for(let n=0,i=this.anchors.length;nn.position-i.position);let r=new CustomEvent("scroll",{detail:{scrollTop:I.instance.scrollTop}});this.onScroll(r)}onScroll(e){let r=e.detail.scrollTop+5,n=this.anchors,i=n.length-1,s=this.index;for(;s>-1&&n[s].position>r;)s-=1;for(;s-1&&this.anchors[this.index].link.classList.remove("focus"),this.index=s,this.index>-1&&this.anchors[this.index].link.classList.add("focus"))}};var ue=(t,e=100)=>{let r;return(...n)=>{clearTimeout(r),r=setTimeout(()=>t(n),e)}};var me=Ae(de());function ve(){let t=document.getElementById("tsd-search");if(!t)return;let e=document.getElementById("search-script");t.classList.add("loading"),e&&(e.addEventListener("error",()=>{t.classList.remove("loading"),t.classList.add("failure")}),e.addEventListener("load",()=>{t.classList.remove("loading"),t.classList.add("ready")}),window.searchData&&t.classList.remove("loading"));let r=document.querySelector("#tsd-search input"),n=document.querySelector("#tsd-search .results");if(!r||!n)throw new Error("The input field or the result list wrapper was not found");let i=!1;n.addEventListener("mousedown",()=>i=!0),n.addEventListener("mouseup",()=>{i=!1,t.classList.remove("has-focus")}),r.addEventListener("focus",()=>t.classList.add("has-focus")),r.addEventListener("blur",()=>{i||(i=!1,t.classList.remove("has-focus"))});let s={base:t.dataset.base+"/"};Ve(t,n,r,s)}function Ve(t,e,r,n){r.addEventListener("input",ue(()=>{ze(t,e,r,n)},200));let i=!1;r.addEventListener("keydown",s=>{i=!0,s.key=="Enter"?Ne(e,r):s.key=="Escape"?r.blur():s.key=="ArrowUp"?fe(e,-1):s.key==="ArrowDown"?fe(e,1):i=!1}),r.addEventListener("keypress",s=>{i&&s.preventDefault()}),document.body.addEventListener("keydown",s=>{s.altKey||s.ctrlKey||s.metaKey||!r.matches(":focus")&&s.key==="/"&&(r.focus(),s.preventDefault())})}function He(t,e){t.index||window.searchData&&(e.classList.remove("loading"),e.classList.add("ready"),t.data=window.searchData,t.index=me.Index.load(window.searchData.index))}function ze(t,e,r,n){if(He(n,t),!n.index||!n.data)return;e.textContent="";let i=r.value.trim(),s=n.index.search(`*${i}*`);for(let o=0,a=Math.min(10,s.length);o${pe(u.parent,i)}.${l}`);let h=document.createElement("li");h.classList.value=u.classes;let p=document.createElement("a");p.href=n.base+u.url,p.classList.add("tsd-kind-icon"),p.innerHTML=l,h.append(p),e.appendChild(h)}}function fe(t,e){let r=t.querySelector(".current");if(!r)r=t.querySelector(e==1?"li:first-child":"li:last-child"),r&&r.classList.add("current");else{let n=r;if(e===1)do n=n.nextElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);else do n=n.previousElementSibling;while(n instanceof HTMLElement&&n.offsetParent==null);n&&(r.classList.remove("current"),n.classList.add("current"))}}function Ne(t,e){let r=t.querySelector(".current");if(r||(r=t.querySelector("li:first-child")),r){let n=r.querySelector("a");n&&(window.location.href=n.href),e.blur()}}function pe(t,e){if(e==="")return t;let r=t.toLocaleLowerCase(),n=e.toLocaleLowerCase(),i=[],s=0,o=r.indexOf(n);for(;o!=-1;)i.push(re(t.substring(s,o)),`${re(t.substring(o,o+n.length))}`),s=o+n.length,o=r.indexOf(n,s);return i.push(re(t.substring(s))),i.join("")}var je={"&":"&","<":"<",">":">","'":"'",'"':"""};function re(t){return t.replace(/[&<>"'"]/g,e=>je[e])}var ge=class{constructor(e,r){this.signature=e,this.description=r}addClass(e){return this.signature.classList.add(e),this.description.classList.add(e),this}removeClass(e){return this.signature.classList.remove(e),this.description.classList.remove(e),this}},ne=class extends Q{constructor(e){super(e);this.groups=[];this.index=-1;this.createGroups(),this.container&&(this.el.classList.add("active"),Array.from(this.el.children).forEach(r=>{r.addEventListener("touchstart",n=>this.onClick(n)),r.addEventListener("click",n=>this.onClick(n))}),this.container.classList.add("active"),this.setIndex(0))}setIndex(e){if(e<0&&(e=0),e>this.groups.length-1&&(e=this.groups.length-1),this.index==e)return;let r=this.groups[e];if(this.index>-1){let n=this.groups[this.index];n.removeClass("current").addClass("fade-out"),r.addClass("current"),r.addClass("fade-in"),I.instance.triggerResize(),setTimeout(()=>{n.removeClass("fade-out"),r.removeClass("fade-in")},300)}else r.addClass("current"),I.instance.triggerResize();this.index=e}createGroups(){let e=this.el.children;if(e.length<2)return;this.container=this.el.nextElementSibling;let r=this.container.children;this.groups=[];for(let n=0;n{r.signature===e.currentTarget&&this.setIndex(n)})}};var C="mousedown",xe="mousemove",_="mouseup",G={x:0,y:0},ye=!1,ie=!1,Be=!1,A=!1,Le=/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);document.documentElement.classList.add(Le?"is-mobile":"not-mobile");Le&&"ontouchstart"in document.documentElement&&(Be=!0,C="touchstart",xe="touchmove",_="touchend");document.addEventListener(C,t=>{ie=!0,A=!1;let e=C=="touchstart"?t.targetTouches[0]:t;G.y=e.pageY||0,G.x=e.pageX||0});document.addEventListener(xe,t=>{if(!!ie&&!A){let e=C=="touchstart"?t.targetTouches[0]:t,r=G.x-(e.pageX||0),n=G.y-(e.pageY||0);A=Math.sqrt(r*r+n*n)>10}});document.addEventListener(_,()=>{ie=!1});document.addEventListener("click",t=>{ye&&(t.preventDefault(),t.stopImmediatePropagation(),ye=!1)});var se=class extends Q{constructor(e){super(e);this.className=this.el.dataset.toggle||"",this.el.addEventListener(_,r=>this.onPointerUp(r)),this.el.addEventListener("click",r=>r.preventDefault()),document.addEventListener(C,r=>this.onDocumentPointerDown(r)),document.addEventListener(_,r=>this.onDocumentPointerUp(r))}setActive(e){if(this.active==e)return;this.active=e,document.documentElement.classList.toggle("has-"+this.className,e),this.el.classList.toggle("active",e);let r=(this.active?"to-has-":"from-has-")+this.className;document.documentElement.classList.add(r),setTimeout(()=>document.documentElement.classList.remove(r),500)}onPointerUp(e){A||(this.setActive(!0),e.preventDefault())}onDocumentPointerDown(e){if(this.active){if(e.target.closest(".col-menu, .tsd-filter-group"))return;this.setActive(!1)}}onDocumentPointerUp(e){if(!A&&this.active&&e.target.closest(".col-menu")){let r=e.target.closest("a");if(r){let n=window.location.href;n.indexOf("#")!=-1&&(n=n.substr(0,n.indexOf("#"))),r.href.substr(0,n.length)==n&&setTimeout(()=>this.setActive(!1),250)}}}};var ae=class{constructor(e,r){this.key=e,this.value=r,this.defaultValue=r,this.initialize(),window.localStorage[this.key]&&this.setValue(this.fromLocalStorage(window.localStorage[this.key]))}initialize(){}setValue(e){if(this.value==e)return;let r=this.value;this.value=e,window.localStorage[this.key]=this.toLocalStorage(e),this.handleValueChange(r,e)}},oe=class extends ae{initialize(){let e=document.querySelector("#tsd-filter-"+this.key);!e||(this.checkbox=e,this.checkbox.addEventListener("change",()=>{this.setValue(this.checkbox.checked)}))}handleValueChange(e,r){!this.checkbox||(this.checkbox.checked=this.value,document.documentElement.classList.toggle("toggle-"+this.key,this.value!=this.defaultValue))}fromLocalStorage(e){return e=="true"}toLocalStorage(e){return e?"true":"false"}},Ee=class extends ae{initialize(){document.documentElement.classList.add("toggle-"+this.key+this.value);let e=document.querySelector("#tsd-filter-"+this.key);if(!e)return;this.select=e;let r=()=>{this.select.classList.add("active")},n=()=>{this.select.classList.remove("active")};this.select.addEventListener(C,r),this.select.addEventListener("mouseover",r),this.select.addEventListener("mouseleave",n),this.select.querySelectorAll("li").forEach(i=>{i.addEventListener(_,s=>{e.classList.remove("active"),this.setValue(s.target.dataset.value||"")})}),document.addEventListener(C,i=>{this.select.contains(i.target)||this.select.classList.remove("active")})}handleValueChange(e,r){this.select.querySelectorAll("li.selected").forEach(s=>{s.classList.remove("selected")});let n=this.select.querySelector('li[data-value="'+r+'"]'),i=this.select.querySelector(".tsd-select-label");n&&i&&(n.classList.add("selected"),i.textContent=n.textContent),document.documentElement.classList.remove("toggle-"+e),document.documentElement.classList.add("toggle-"+r)}fromLocalStorage(e){return e}toLocalStorage(e){return e}},Y=class extends Q{constructor(e){super(e);this.optionVisibility=new Ee("visibility","private"),this.optionInherited=new oe("inherited",!0),this.optionExternals=new oe("externals",!0)}static isSupported(){try{return typeof window.localStorage!="undefined"}catch{return!1}}};function we(t){let e=localStorage.getItem("tsd-theme")||"os";t.value=e,be(e),t.addEventListener("change",()=>{localStorage.setItem("tsd-theme",t.value),be(t.value)})}function be(t){switch(t){case"os":document.body.classList.remove("light","dark");break;case"light":document.body.classList.remove("dark"),document.body.classList.add("light");break;case"dark":document.body.classList.remove("light"),document.body.classList.add("dark");break}}ve();N(te,".menu-highlight");N(ne,".tsd-signatures");N(se,"a[data-toggle]");Y.isSupported()?N(Y,"#tsd-filter"):document.documentElement.classList.add("no-filter");var Te=document.getElementById("theme");Te&&we(Te);var qe=new X;Object.defineProperty(window,"app",{value:qe});})(); /*! * lunr.Builder * Copyright (C) 2020 Oliver Nightingale diff --git a/docs/assets/search.js b/docs/assets/search.js index f23fdb3..fb37975 100644 --- a/docs/assets/search.js +++ b/docs/assets/search.js @@ -1 +1 @@ -window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"32\":\"Variable\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":2,\"name\":\"client\",\"url\":\"modules/client.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":128,\"name\":\"ClasschartsClient\",\"url\":\"classes/client.ClasschartsClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"client\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/client.ClasschartsClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":3,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/client.ClasschartsClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"client.ClasschartsClient\"},{\"id\":4,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/client.ClasschartsClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"client.ClasschartsClient\"},{\"id\":5,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/client.ClasschartsClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"client.ClasschartsClient\"},{\"id\":6,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/client.ClasschartsClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"client.ClasschartsClient\"},{\"id\":7,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/client.ClasschartsClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"client.ClasschartsClient\"},{\"id\":8,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/client.ClasschartsClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":9,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/client.ClasschartsClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":10,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/client.ClasschartsClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":11,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/client.ClasschartsClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":12,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/client.ClasschartsClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":13,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/client.ClasschartsClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":14,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/client.ClasschartsClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":15,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/client.ClasschartsClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":16,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/client.ClasschartsClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"client.ClasschartsClient\"},{\"id\":17,\"kind\":2,\"name\":\"consts\",\"url\":\"modules/consts.html\",\"classes\":\"tsd-kind-module\"},{\"id\":18,\"kind\":32,\"name\":\"BASE_URL\",\"url\":\"modules/consts.html#BASE_URL\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":19,\"kind\":32,\"name\":\"API_BASE_STUDENT\",\"url\":\"modules/consts.html#API_BASE_STUDENT\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":20,\"kind\":32,\"name\":\"API_BASE_PARENT\",\"url\":\"modules/consts.html#API_BASE_PARENT\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":21,\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"id\":22,\"kind\":2,\"name\":\"parent\",\"url\":\"modules/parent.html\",\"classes\":\"tsd-kind-module\"},{\"id\":23,\"kind\":128,\"name\":\"ClasschartsParentClient\",\"url\":\"classes/parent.ClasschartsParentClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"parent\"},{\"id\":24,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/parent.ClasschartsParentClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":25,\"kind\":1024,\"name\":\"password\",\"url\":\"classes/parent.ClasschartsParentClient.html#password\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":26,\"kind\":1024,\"name\":\"email\",\"url\":\"classes/parent.ClasschartsParentClient.html#email\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":27,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/parent.ClasschartsParentClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":28,\"kind\":2048,\"name\":\"getPupils\",\"url\":\"classes/parent.ClasschartsParentClient.html#getPupils\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":29,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/parent.ClasschartsParentClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":30,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/parent.ClasschartsParentClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":31,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/parent.ClasschartsParentClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":32,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/parent.ClasschartsParentClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":33,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/parent.ClasschartsParentClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":34,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/parent.ClasschartsParentClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":35,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/parent.ClasschartsParentClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":36,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/parent.ClasschartsParentClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":37,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/parent.ClasschartsParentClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":38,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/parent.ClasschartsParentClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":39,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/parent.ClasschartsParentClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":40,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/parent.ClasschartsParentClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":41,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/parent.ClasschartsParentClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":42,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/parent.ClasschartsParentClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parent.ClasschartsParentClient\"},{\"id\":43,\"kind\":2,\"name\":\"student\",\"url\":\"modules/student.html\",\"classes\":\"tsd-kind-module\"},{\"id\":44,\"kind\":128,\"name\":\"ClasschartsStudentClient\",\"url\":\"classes/student.ClasschartsStudentClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"student\"},{\"id\":45,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/student.ClasschartsStudentClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":46,\"kind\":1024,\"name\":\"studentCode\",\"url\":\"classes/student.ClasschartsStudentClient.html#studentCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":47,\"kind\":1024,\"name\":\"dateOfBirth\",\"url\":\"classes/student.ClasschartsStudentClient.html#dateOfBirth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":48,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/student.ClasschartsStudentClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":49,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/student.ClasschartsStudentClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":50,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/student.ClasschartsStudentClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":51,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/student.ClasschartsStudentClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":52,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/student.ClasschartsStudentClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":53,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/student.ClasschartsStudentClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":54,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/student.ClasschartsStudentClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":55,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/student.ClasschartsStudentClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":56,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/student.ClasschartsStudentClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":57,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/student.ClasschartsStudentClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":58,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/student.ClasschartsStudentClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":59,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/student.ClasschartsStudentClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":60,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/student.ClasschartsStudentClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":61,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/student.ClasschartsStudentClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":62,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/student.ClasschartsStudentClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"student.ClasschartsStudentClient\"},{\"id\":63,\"kind\":2,\"name\":\"types\",\"url\":\"modules/types.html\",\"classes\":\"tsd-kind-module\"},{\"id\":64,\"kind\":256,\"name\":\"Student\",\"url\":\"interfaces/types.Student.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":65,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Student.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":66,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Student.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":67,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Student.html#first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":68,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Student.html#last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":69,\"kind\":1024,\"name\":\"avatar_url\",\"url\":\"interfaces/types.Student.html#avatar_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":70,\"kind\":1024,\"name\":\"display_behaviour\",\"url\":\"interfaces/types.Student.html#display_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":71,\"kind\":1024,\"name\":\"display_parent_behaviour\",\"url\":\"interfaces/types.Student.html#display_parent_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":72,\"kind\":1024,\"name\":\"display_homework\",\"url\":\"interfaces/types.Student.html#display_homework\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":73,\"kind\":1024,\"name\":\"display_rewards\",\"url\":\"interfaces/types.Student.html#display_rewards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":74,\"kind\":1024,\"name\":\"display_detentions\",\"url\":\"interfaces/types.Student.html#display_detentions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":75,\"kind\":1024,\"name\":\"display_report_cards\",\"url\":\"interfaces/types.Student.html#display_report_cards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":76,\"kind\":1024,\"name\":\"display_classes\",\"url\":\"interfaces/types.Student.html#display_classes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":77,\"kind\":1024,\"name\":\"display_announcements\",\"url\":\"interfaces/types.Student.html#display_announcements\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":78,\"kind\":1024,\"name\":\"display_attendance\",\"url\":\"interfaces/types.Student.html#display_attendance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":79,\"kind\":1024,\"name\":\"display_attendance_type\",\"url\":\"interfaces/types.Student.html#display_attendance_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":80,\"kind\":1024,\"name\":\"display_attendance_percentage\",\"url\":\"interfaces/types.Student.html#display_attendance_percentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":81,\"kind\":1024,\"name\":\"display_activity\",\"url\":\"interfaces/types.Student.html#display_activity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":82,\"kind\":1024,\"name\":\"display_mental_health\",\"url\":\"interfaces/types.Student.html#display_mental_health\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":83,\"kind\":1024,\"name\":\"display_timetable\",\"url\":\"interfaces/types.Student.html#display_timetable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":84,\"kind\":1024,\"name\":\"is_disabled\",\"url\":\"interfaces/types.Student.html#is_disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":85,\"kind\":1024,\"name\":\"display_two_way_communications\",\"url\":\"interfaces/types.Student.html#display_two_way_communications\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":86,\"kind\":1024,\"name\":\"display_absences\",\"url\":\"interfaces/types.Student.html#display_absences\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":87,\"kind\":1024,\"name\":\"can_upload_attachments\",\"url\":\"interfaces/types.Student.html#can_upload_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":88,\"kind\":1024,\"name\":\"display_event_badges\",\"url\":\"interfaces/types.Student.html#display_event_badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":89,\"kind\":1024,\"name\":\"display_avatars\",\"url\":\"interfaces/types.Student.html#display_avatars\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":90,\"kind\":1024,\"name\":\"display_concern_submission\",\"url\":\"interfaces/types.Student.html#display_concern_submission\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":91,\"kind\":1024,\"name\":\"display_custom_fields\",\"url\":\"interfaces/types.Student.html#display_custom_fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":92,\"kind\":1024,\"name\":\"pupil_concerns_help_text\",\"url\":\"interfaces/types.Student.html#pupil_concerns_help_text\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":93,\"kind\":1024,\"name\":\"allow_pupils_add_timetable_notes\",\"url\":\"interfaces/types.Student.html#allow_pupils_add_timetable_notes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":94,\"kind\":1024,\"name\":\"announcements_count\",\"url\":\"interfaces/types.Student.html#announcements_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":95,\"kind\":1024,\"name\":\"messages_count\",\"url\":\"interfaces/types.Student.html#messages_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":96,\"kind\":1024,\"name\":\"pusher_channel_name\",\"url\":\"interfaces/types.Student.html#pusher_channel_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":97,\"kind\":1024,\"name\":\"has_birthday\",\"url\":\"interfaces/types.Student.html#has_birthday\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":98,\"kind\":1024,\"name\":\"has_new_survey\",\"url\":\"interfaces/types.Student.html#has_new_survey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":99,\"kind\":1024,\"name\":\"survey_id\",\"url\":\"interfaces/types.Student.html#survey_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":100,\"kind\":1024,\"name\":\"detention_alias_plural_uc\",\"url\":\"interfaces/types.Student.html#detention_alias_plural_uc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":101,\"kind\":256,\"name\":\"GetBehaviourOptions\",\"url\":\"interfaces/types.GetBehaviourOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":102,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types.GetBehaviourOptions.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetBehaviourOptions\"},{\"id\":103,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/types.GetBehaviourOptions.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetBehaviourOptions\"},{\"id\":104,\"kind\":256,\"name\":\"BehaviourTimelinePoint\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":105,\"kind\":1024,\"name\":\"positive\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#positive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":106,\"kind\":1024,\"name\":\"negative\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":107,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":108,\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":109,\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#end\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":110,\"kind\":256,\"name\":\"BehaviourResponse\",\"url\":\"interfaces/types.BehaviourResponse.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":111,\"kind\":1024,\"name\":\"timeline\",\"url\":\"interfaces/types.BehaviourResponse.html#timeline\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":112,\"kind\":1024,\"name\":\"positive_reasons\",\"url\":\"interfaces/types.BehaviourResponse.html#positive_reasons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":113,\"kind\":1024,\"name\":\"negative_reasons\",\"url\":\"interfaces/types.BehaviourResponse.html#negative_reasons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":114,\"kind\":1024,\"name\":\"other_positive\",\"url\":\"interfaces/types.BehaviourResponse.html#other_positive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":115,\"kind\":1024,\"name\":\"other_negative\",\"url\":\"interfaces/types.BehaviourResponse.html#other_negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":116,\"kind\":1024,\"name\":\"other_positive_count\",\"url\":\"interfaces/types.BehaviourResponse.html#other_positive_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":117,\"kind\":1024,\"name\":\"other_negative_count\",\"url\":\"interfaces/types.BehaviourResponse.html#other_negative_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":118,\"kind\":256,\"name\":\"GetActivityOptions\",\"url\":\"interfaces/types.GetActivityOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":119,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types.GetActivityOptions.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":120,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/types.GetActivityOptions.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":121,\"kind\":1024,\"name\":\"last_id\",\"url\":\"interfaces/types.GetActivityOptions.html#last_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":122,\"kind\":256,\"name\":\"ActivityPoint\",\"url\":\"interfaces/types.ActivityPoint.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":123,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.ActivityPoint.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":124,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types.ActivityPoint.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":125,\"kind\":1024,\"name\":\"polarity\",\"url\":\"interfaces/types.ActivityPoint.html#polarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":126,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.ActivityPoint.html#reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":127,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/types.ActivityPoint.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":128,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.ActivityPoint.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":129,\"kind\":1024,\"name\":\"timestamp_custom_time\",\"url\":\"interfaces/types.ActivityPoint.html#timestamp_custom_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":130,\"kind\":1024,\"name\":\"style\",\"url\":\"interfaces/types.ActivityPoint.html#style\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":131,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.ActivityPoint.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":132,\"kind\":1024,\"name\":\"border_color\",\"url\":\"interfaces/types.ActivityPoint.html#__type.border_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.ActivityPoint.__type\"},{\"id\":133,\"kind\":1024,\"name\":\"custom_class\",\"url\":\"interfaces/types.ActivityPoint.html#__type.custom_class\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.ActivityPoint.__type\"},{\"id\":134,\"kind\":1024,\"name\":\"pupil_name\",\"url\":\"interfaces/types.ActivityPoint.html#pupil_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":135,\"kind\":1024,\"name\":\"lesson_name\",\"url\":\"interfaces/types.ActivityPoint.html#lesson_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":136,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.ActivityPoint.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":137,\"kind\":1024,\"name\":\"room_name\",\"url\":\"interfaces/types.ActivityPoint.html#room_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":138,\"kind\":1024,\"name\":\"note\",\"url\":\"interfaces/types.ActivityPoint.html#note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":139,\"kind\":1024,\"name\":\"_can_delete\",\"url\":\"interfaces/types.ActivityPoint.html#_can_delete\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":140,\"kind\":1024,\"name\":\"badges\",\"url\":\"interfaces/types.ActivityPoint.html#badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":141,\"kind\":1024,\"name\":\"detention_date\",\"url\":\"interfaces/types.ActivityPoint.html#detention_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":142,\"kind\":1024,\"name\":\"detention_time\",\"url\":\"interfaces/types.ActivityPoint.html#detention_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":143,\"kind\":1024,\"name\":\"detention_location\",\"url\":\"interfaces/types.ActivityPoint.html#detention_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":144,\"kind\":1024,\"name\":\"detention_type\",\"url\":\"interfaces/types.ActivityPoint.html#detention_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":145,\"kind\":4194304,\"name\":\"ActivityResponse\",\"url\":\"modules/types.html#ActivityResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":146,\"kind\":4194304,\"name\":\"DisplayDate\",\"url\":\"modules/types.html#DisplayDate\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":147,\"kind\":256,\"name\":\"GetHomeworkOptions\",\"url\":\"interfaces/types.GetHomeworkOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":148,\"kind\":1024,\"name\":\"displayDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#displayDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":149,\"kind\":1024,\"name\":\"fromDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#fromDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":150,\"kind\":1024,\"name\":\"toDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#toDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":151,\"kind\":256,\"name\":\"ValidatedHomeworkAttachment\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":152,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":153,\"kind\":1024,\"name\":\"file_name\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#file_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":154,\"kind\":1024,\"name\":\"file\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#file\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":155,\"kind\":1024,\"name\":\"validated_file\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#validated_file\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":156,\"kind\":256,\"name\":\"Homework\",\"url\":\"interfaces/types.Homework.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":157,\"kind\":1024,\"name\":\"lesson\",\"url\":\"interfaces/types.Homework.html#lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":158,\"kind\":1024,\"name\":\"subject\",\"url\":\"interfaces/types.Homework.html#subject\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":159,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.Homework.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":160,\"kind\":1024,\"name\":\"homework_type\",\"url\":\"interfaces/types.Homework.html#homework_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":161,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Homework.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":162,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Homework.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":163,\"kind\":1024,\"name\":\"meta_title\",\"url\":\"interfaces/types.Homework.html#meta_title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":164,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types.Homework.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":165,\"kind\":1024,\"name\":\"description_raw\",\"url\":\"interfaces/types.Homework.html#description_raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":166,\"kind\":1024,\"name\":\"issue_date\",\"url\":\"interfaces/types.Homework.html#issue_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":167,\"kind\":1024,\"name\":\"due_date\",\"url\":\"interfaces/types.Homework.html#due_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":168,\"kind\":1024,\"name\":\"completion_time_unit\",\"url\":\"interfaces/types.Homework.html#completion_time_unit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":169,\"kind\":1024,\"name\":\"completion_time_value\",\"url\":\"interfaces/types.Homework.html#completion_time_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":170,\"kind\":1024,\"name\":\"publish_time\",\"url\":\"interfaces/types.Homework.html#publish_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":171,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/types.Homework.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":172,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Homework.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":173,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Homework.html#__type.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":174,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/types.Homework.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":175,\"kind\":1024,\"name\":\"mark\",\"url\":\"interfaces/types.Homework.html#__type.mark\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":176,\"kind\":1024,\"name\":\"mark_relative\",\"url\":\"interfaces/types.Homework.html#__type.mark_relative\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":177,\"kind\":1024,\"name\":\"ticked\",\"url\":\"interfaces/types.Homework.html#__type.ticked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":178,\"kind\":1024,\"name\":\"allow_attachments\",\"url\":\"interfaces/types.Homework.html#__type.allow_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":179,\"kind\":1024,\"name\":\"first_seen_date\",\"url\":\"interfaces/types.Homework.html#__type.first_seen_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":180,\"kind\":1024,\"name\":\"last_seen_date\",\"url\":\"interfaces/types.Homework.html#__type.last_seen_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":181,\"kind\":1024,\"name\":\"attachments\",\"url\":\"interfaces/types.Homework.html#__type.attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":182,\"kind\":1024,\"name\":\"has_feedback\",\"url\":\"interfaces/types.Homework.html#__type.has_feedback\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":183,\"kind\":1024,\"name\":\"validated_links\",\"url\":\"interfaces/types.Homework.html#validated_links\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":184,\"kind\":1024,\"name\":\"validated_attachments\",\"url\":\"interfaces/types.Homework.html#validated_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":185,\"kind\":4194304,\"name\":\"HomeworksResponse\",\"url\":\"modules/types.html#HomeworksResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":186,\"kind\":256,\"name\":\"GetLessonsOptions\",\"url\":\"interfaces/types.GetLessonsOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":187,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.GetLessonsOptions.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetLessonsOptions\"},{\"id\":188,\"kind\":256,\"name\":\"Lesson\",\"url\":\"interfaces/types.Lesson.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":189,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.Lesson.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":190,\"kind\":1024,\"name\":\"lesson_name\",\"url\":\"interfaces/types.Lesson.html#lesson_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":191,\"kind\":1024,\"name\":\"subject_name\",\"url\":\"interfaces/types.Lesson.html#subject_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":192,\"kind\":1024,\"name\":\"is_alternative_lesson\",\"url\":\"interfaces/types.Lesson.html#is_alternative_lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":193,\"kind\":1024,\"name\":\"period_name\",\"url\":\"interfaces/types.Lesson.html#period_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":194,\"kind\":1024,\"name\":\"period_number\",\"url\":\"interfaces/types.Lesson.html#period_number\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":195,\"kind\":1024,\"name\":\"room_name\",\"url\":\"interfaces/types.Lesson.html#room_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":196,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.Lesson.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":197,\"kind\":1024,\"name\":\"start_time\",\"url\":\"interfaces/types.Lesson.html#start_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":198,\"kind\":1024,\"name\":\"end_time\",\"url\":\"interfaces/types.Lesson.html#end_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":199,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/types.Lesson.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":200,\"kind\":1024,\"name\":\"note_abstract\",\"url\":\"interfaces/types.Lesson.html#note_abstract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":201,\"kind\":1024,\"name\":\"note\",\"url\":\"interfaces/types.Lesson.html#note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":202,\"kind\":1024,\"name\":\"pupil_note_abstract\",\"url\":\"interfaces/types.Lesson.html#pupil_note_abstract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":203,\"kind\":1024,\"name\":\"pupil_note\",\"url\":\"interfaces/types.Lesson.html#pupil_note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":204,\"kind\":1024,\"name\":\"pupil_note_raw\",\"url\":\"interfaces/types.Lesson.html#pupil_note_raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":205,\"kind\":4194304,\"name\":\"LessonsResponse\",\"url\":\"modules/types.html#LessonsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":206,\"kind\":256,\"name\":\"LessonPupilBehaviour\",\"url\":\"interfaces/types.LessonPupilBehaviour.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":207,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":208,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":209,\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#icon\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":210,\"kind\":1024,\"name\":\"polarity\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#polarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":211,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":212,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":213,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":214,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":215,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":216,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":217,\"kind\":256,\"name\":\"PupilEvent\",\"url\":\"interfaces/types.PupilEvent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":218,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.PupilEvent.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":219,\"kind\":1024,\"name\":\"lesson_pupil_behaviour\",\"url\":\"interfaces/types.PupilEvent.html#lesson_pupil_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":220,\"kind\":1024,\"name\":\"event\",\"url\":\"interfaces/types.PupilEvent.html#event\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":221,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.PupilEvent.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":222,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/types.PupilEvent.html#__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.PupilEvent.__type\"},{\"id\":223,\"kind\":256,\"name\":\"Badge\",\"url\":\"interfaces/types.Badge.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":224,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Badge.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":225,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Badge.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":226,\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/types.Badge.html#icon\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":227,\"kind\":1024,\"name\":\"colour\",\"url\":\"interfaces/types.Badge.html#colour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":228,\"kind\":1024,\"name\":\"created_date\",\"url\":\"interfaces/types.Badge.html#created_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":229,\"kind\":1024,\"name\":\"pupil_badges\",\"url\":\"interfaces/types.Badge.html#pupil_badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":230,\"kind\":1024,\"name\":\"icon_url\",\"url\":\"interfaces/types.Badge.html#icon_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":231,\"kind\":4194304,\"name\":\"BadgesResponse\",\"url\":\"modules/types.html#BadgesResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":232,\"kind\":256,\"name\":\"Detention\",\"url\":\"interfaces/types.Detention.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":233,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":234,\"kind\":1024,\"name\":\"attended\",\"url\":\"interfaces/types.Detention.html#attended\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":235,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.Detention.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":236,\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/types.Detention.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":237,\"kind\":1024,\"name\":\"location\",\"url\":\"interfaces/types.Detention.html#location\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":238,\"kind\":1024,\"name\":\"notes\",\"url\":\"interfaces/types.Detention.html#notes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":239,\"kind\":1024,\"name\":\"time\",\"url\":\"interfaces/types.Detention.html#time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":240,\"kind\":1024,\"name\":\"pupil\",\"url\":\"interfaces/types.Detention.html#pupil\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":241,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":242,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-4.id-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":243,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Detention.html#__type-4.first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":244,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Detention.html#__type-4.last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":245,\"kind\":1024,\"name\":\"school\",\"url\":\"interfaces/types.Detention.html#__type-4.school\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":246,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":247,\"kind\":1024,\"name\":\"opt_notes_names\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_names\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":248,\"kind\":1024,\"name\":\"opt_notes_comments\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_comments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":249,\"kind\":1024,\"name\":\"opt_notes_comments_pupils\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_comments_pupils\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":250,\"kind\":1024,\"name\":\"lesson\",\"url\":\"interfaces/types.Detention.html#lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":251,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":252,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-1.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":253,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type-1.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":254,\"kind\":1024,\"name\":\"subject\",\"url\":\"interfaces/types.Detention.html#__type-1.subject\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":255,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":256,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2.id-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":257,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":258,\"kind\":1024,\"name\":\"lesson_pupil_behaviour\",\"url\":\"interfaces/types.Detention.html#lesson_pupil_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":259,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":260,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.Detention.html#__type-3.reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":261,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.Detention.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":262,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":263,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-6.id-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":264,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Detention.html#__type-6.first_name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":265,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Detention.html#__type-6.last_name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":266,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Detention.html#__type-6.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":267,\"kind\":1024,\"name\":\"detention_type\",\"url\":\"interfaces/types.Detention.html#detention_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":268,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":269,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":270,\"kind\":4194304,\"name\":\"DetentionsResponse\",\"url\":\"modules/types.html#DetentionsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":271,\"kind\":256,\"name\":\"Announcement\",\"url\":\"interfaces/types.Announcement.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":272,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Announcement.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":273,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Announcement.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":274,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types.Announcement.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":275,\"kind\":1024,\"name\":\"school_name\",\"url\":\"interfaces/types.Announcement.html#school_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":276,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.Announcement.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":277,\"kind\":1024,\"name\":\"school_logo\",\"url\":\"interfaces/types.Announcement.html#school_logo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":278,\"kind\":1024,\"name\":\"sticky\",\"url\":\"interfaces/types.Announcement.html#sticky\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":279,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/types.Announcement.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":280,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.Announcement.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":281,\"kind\":1024,\"name\":\"attachments\",\"url\":\"interfaces/types.Announcement.html#attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":282,\"kind\":1024,\"name\":\"for_pupils\",\"url\":\"interfaces/types.Announcement.html#for_pupils\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":283,\"kind\":1024,\"name\":\"comment_visibility\",\"url\":\"interfaces/types.Announcement.html#comment_visibility\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":284,\"kind\":1024,\"name\":\"allow_comments\",\"url\":\"interfaces/types.Announcement.html#allow_comments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":285,\"kind\":1024,\"name\":\"allow_reactions\",\"url\":\"interfaces/types.Announcement.html#allow_reactions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":286,\"kind\":1024,\"name\":\"allow_consent\",\"url\":\"interfaces/types.Announcement.html#allow_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":287,\"kind\":1024,\"name\":\"priority_pinned\",\"url\":\"interfaces/types.Announcement.html#priority_pinned\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":288,\"kind\":1024,\"name\":\"requires_consent\",\"url\":\"interfaces/types.Announcement.html#requires_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":289,\"kind\":1024,\"name\":\"can_change_consent\",\"url\":\"interfaces/types.Announcement.html#can_change_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":290,\"kind\":1024,\"name\":\"consent\",\"url\":\"interfaces/types.Announcement.html#consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":291,\"kind\":1024,\"name\":\"pupil_consents\",\"url\":\"interfaces/types.Announcement.html#pupil_consents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":292,\"kind\":4194304,\"name\":\"AnnouncementsResponse\",\"url\":\"modules/types.html#AnnouncementsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":293,\"kind\":16777216,\"name\":\"ClasschartsParentClient\",\"url\":\"modules/index.html#ClasschartsParentClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":294,\"kind\":16777216,\"name\":\"ClasschartsStudentClient\",\"url\":\"modules/index.html#ClasschartsStudentClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,47.741]],[\"parent/0\",[]],[\"name/1\",[1,52.849]],[\"parent/1\",[0,4.734]],[\"name/2\",[2,44.376]],[\"parent/2\",[3,2.925]],[\"name/3\",[4,44.376]],[\"parent/3\",[3,2.925]],[\"name/4\",[5,44.376]],[\"parent/4\",[3,2.925]],[\"name/5\",[6,44.376]],[\"parent/5\",[3,2.925]],[\"name/6\",[7,44.376]],[\"parent/6\",[3,2.925]],[\"name/7\",[8,44.376]],[\"parent/7\",[3,2.925]],[\"name/8\",[9,44.376]],[\"parent/8\",[3,2.925]],[\"name/9\",[10,44.376]],[\"parent/9\",[3,2.925]],[\"name/10\",[11,44.376]],[\"parent/10\",[3,2.925]],[\"name/11\",[12,44.376]],[\"parent/11\",[3,2.925]],[\"name/12\",[13,44.376]],[\"parent/12\",[3,2.925]],[\"name/13\",[14,44.376]],[\"parent/13\",[3,2.925]],[\"name/14\",[15,44.376]],[\"parent/14\",[3,2.925]],[\"name/15\",[16,44.376]],[\"parent/15\",[3,2.925]],[\"name/16\",[17,44.376]],[\"parent/16\",[3,2.925]],[\"name/17\",[18,41.863]],[\"parent/17\",[]],[\"name/18\",[19,52.849]],[\"parent/18\",[18,4.151]],[\"name/19\",[20,52.849]],[\"parent/19\",[18,4.151]],[\"name/20\",[21,52.849]],[\"parent/20\",[18,4.151]],[\"name/21\",[22,44.376]],[\"parent/21\",[]],[\"name/22\",[23,47.741]],[\"parent/22\",[]],[\"name/23\",[24,47.741]],[\"parent/23\",[23,4.734]],[\"name/24\",[2,44.376]],[\"parent/24\",[25,2.697]],[\"name/25\",[26,52.849]],[\"parent/25\",[25,2.697]],[\"name/26\",[27,52.849]],[\"parent/26\",[25,2.697]],[\"name/27\",[28,47.741]],[\"parent/27\",[25,2.697]],[\"name/28\",[29,52.849]],[\"parent/28\",[25,2.697]],[\"name/29\",[4,44.376]],[\"parent/29\",[25,2.697]],[\"name/30\",[5,44.376]],[\"parent/30\",[25,2.697]],[\"name/31\",[6,44.376]],[\"parent/31\",[25,2.697]],[\"name/32\",[7,44.376]],[\"parent/32\",[25,2.697]],[\"name/33\",[8,44.376]],[\"parent/33\",[25,2.697]],[\"name/34\",[9,44.376]],[\"parent/34\",[25,2.697]],[\"name/35\",[10,44.376]],[\"parent/35\",[25,2.697]],[\"name/36\",[11,44.376]],[\"parent/36\",[25,2.697]],[\"name/37\",[12,44.376]],[\"parent/37\",[25,2.697]],[\"name/38\",[13,44.376]],[\"parent/38\",[25,2.697]],[\"name/39\",[14,44.376]],[\"parent/39\",[25,2.697]],[\"name/40\",[15,44.376]],[\"parent/40\",[25,2.697]],[\"name/41\",[16,44.376]],[\"parent/41\",[25,2.697]],[\"name/42\",[17,44.376]],[\"parent/42\",[25,2.697]],[\"name/43\",[30,44.376]],[\"parent/43\",[]],[\"name/44\",[31,47.741]],[\"parent/44\",[30,4.4]],[\"name/45\",[2,44.376]],[\"parent/45\",[32,2.749]],[\"name/46\",[33,52.849]],[\"parent/46\",[32,2.749]],[\"name/47\",[34,52.849]],[\"parent/47\",[32,2.749]],[\"name/48\",[28,47.741]],[\"parent/48\",[32,2.749]],[\"name/49\",[4,44.376]],[\"parent/49\",[32,2.749]],[\"name/50\",[5,44.376]],[\"parent/50\",[32,2.749]],[\"name/51\",[6,44.376]],[\"parent/51\",[32,2.749]],[\"name/52\",[7,44.376]],[\"parent/52\",[32,2.749]],[\"name/53\",[8,44.376]],[\"parent/53\",[32,2.749]],[\"name/54\",[9,44.376]],[\"parent/54\",[32,2.749]],[\"name/55\",[10,44.376]],[\"parent/55\",[32,2.749]],[\"name/56\",[11,44.376]],[\"parent/56\",[32,2.749]],[\"name/57\",[12,44.376]],[\"parent/57\",[32,2.749]],[\"name/58\",[13,44.376]],[\"parent/58\",[32,2.749]],[\"name/59\",[14,44.376]],[\"parent/59\",[32,2.749]],[\"name/60\",[15,44.376]],[\"parent/60\",[32,2.749]],[\"name/61\",[16,44.376]],[\"parent/61\",[32,2.749]],[\"name/62\",[17,44.376]],[\"parent/62\",[32,2.749]],[\"name/63\",[35,24.917]],[\"parent/63\",[]],[\"name/64\",[30,44.376]],[\"parent/64\",[35,2.471]],[\"name/65\",[36,31.646]],[\"parent/65\",[37,2.075]],[\"name/66\",[38,38.186]],[\"parent/66\",[37,2.075]],[\"name/67\",[39,41.863]],[\"parent/67\",[37,2.075]],[\"name/68\",[40,41.863]],[\"parent/68\",[37,2.075]],[\"name/69\",[41,52.849]],[\"parent/69\",[37,2.075]],[\"name/70\",[42,52.849]],[\"parent/70\",[37,2.075]],[\"name/71\",[43,52.849]],[\"parent/71\",[37,2.075]],[\"name/72\",[44,52.849]],[\"parent/72\",[37,2.075]],[\"name/73\",[45,52.849]],[\"parent/73\",[37,2.075]],[\"name/74\",[46,52.849]],[\"parent/74\",[37,2.075]],[\"name/75\",[47,52.849]],[\"parent/75\",[37,2.075]],[\"name/76\",[48,52.849]],[\"parent/76\",[37,2.075]],[\"name/77\",[49,52.849]],[\"parent/77\",[37,2.075]],[\"name/78\",[50,52.849]],[\"parent/78\",[37,2.075]],[\"name/79\",[51,52.849]],[\"parent/79\",[37,2.075]],[\"name/80\",[52,52.849]],[\"parent/80\",[37,2.075]],[\"name/81\",[53,52.849]],[\"parent/81\",[37,2.075]],[\"name/82\",[54,52.849]],[\"parent/82\",[37,2.075]],[\"name/83\",[55,52.849]],[\"parent/83\",[37,2.075]],[\"name/84\",[56,52.849]],[\"parent/84\",[37,2.075]],[\"name/85\",[57,52.849]],[\"parent/85\",[37,2.075]],[\"name/86\",[58,52.849]],[\"parent/86\",[37,2.075]],[\"name/87\",[59,52.849]],[\"parent/87\",[37,2.075]],[\"name/88\",[60,52.849]],[\"parent/88\",[37,2.075]],[\"name/89\",[61,52.849]],[\"parent/89\",[37,2.075]],[\"name/90\",[62,52.849]],[\"parent/90\",[37,2.075]],[\"name/91\",[63,52.849]],[\"parent/91\",[37,2.075]],[\"name/92\",[64,52.849]],[\"parent/92\",[37,2.075]],[\"name/93\",[65,52.849]],[\"parent/93\",[37,2.075]],[\"name/94\",[66,52.849]],[\"parent/94\",[37,2.075]],[\"name/95\",[67,52.849]],[\"parent/95\",[37,2.075]],[\"name/96\",[68,52.849]],[\"parent/96\",[37,2.075]],[\"name/97\",[69,52.849]],[\"parent/97\",[37,2.075]],[\"name/98\",[70,52.849]],[\"parent/98\",[37,2.075]],[\"name/99\",[71,52.849]],[\"parent/99\",[37,2.075]],[\"name/100\",[72,52.849]],[\"parent/100\",[37,2.075]],[\"name/101\",[73,52.849]],[\"parent/101\",[35,2.471]],[\"name/102\",[74,47.741]],[\"parent/102\",[75,4.734]],[\"name/103\",[76,47.741]],[\"parent/103\",[75,4.734]],[\"name/104\",[77,52.849]],[\"parent/104\",[35,2.471]],[\"name/105\",[78,52.849]],[\"parent/105\",[79,3.952]],[\"name/106\",[80,52.849]],[\"parent/106\",[79,3.952]],[\"name/107\",[38,38.186]],[\"parent/107\",[79,3.952]],[\"name/108\",[81,52.849]],[\"parent/108\",[79,3.952]],[\"name/109\",[82,52.849]],[\"parent/109\",[79,3.952]],[\"name/110\",[83,52.849]],[\"parent/110\",[35,2.471]],[\"name/111\",[84,52.849]],[\"parent/111\",[85,3.645]],[\"name/112\",[86,52.849]],[\"parent/112\",[85,3.645]],[\"name/113\",[87,52.849]],[\"parent/113\",[85,3.645]],[\"name/114\",[88,52.849]],[\"parent/114\",[85,3.645]],[\"name/115\",[89,52.849]],[\"parent/115\",[85,3.645]],[\"name/116\",[90,52.849]],[\"parent/116\",[85,3.645]],[\"name/117\",[91,52.849]],[\"parent/117\",[85,3.645]],[\"name/118\",[92,52.849]],[\"parent/118\",[35,2.471]],[\"name/119\",[74,47.741]],[\"parent/119\",[93,4.4]],[\"name/120\",[76,47.741]],[\"parent/120\",[93,4.4]],[\"name/121\",[94,52.849]],[\"parent/121\",[93,4.4]],[\"name/122\",[95,52.849]],[\"parent/122\",[35,2.471]],[\"name/123\",[36,31.646]],[\"parent/123\",[96,2.647]],[\"name/124\",[97,52.849]],[\"parent/124\",[96,2.647]],[\"name/125\",[98,47.741]],[\"parent/125\",[96,2.647]],[\"name/126\",[99,44.376]],[\"parent/126\",[96,2.647]],[\"name/127\",[100,47.741]],[\"parent/127\",[96,2.647]],[\"name/128\",[101,41.863]],[\"parent/128\",[96,2.647]],[\"name/129\",[102,52.849]],[\"parent/129\",[96,2.647]],[\"name/130\",[103,52.849]],[\"parent/130\",[96,2.647]],[\"name/131\",[104,32.48]],[\"parent/131\",[96,2.647]],[\"name/132\",[105,52.849]],[\"parent/132\",[106,4.734]],[\"name/133\",[107,52.849]],[\"parent/133\",[106,4.734]],[\"name/134\",[108,52.849]],[\"parent/134\",[96,2.647]],[\"name/135\",[109,47.741]],[\"parent/135\",[96,2.647]],[\"name/136\",[110,44.376]],[\"parent/136\",[96,2.647]],[\"name/137\",[111,47.741]],[\"parent/137\",[96,2.647]],[\"name/138\",[112,47.741]],[\"parent/138\",[96,2.647]],[\"name/139\",[113,52.849]],[\"parent/139\",[96,2.647]],[\"name/140\",[114,52.849]],[\"parent/140\",[96,2.647]],[\"name/141\",[115,52.849]],[\"parent/141\",[96,2.647]],[\"name/142\",[116,52.849]],[\"parent/142\",[96,2.647]],[\"name/143\",[117,52.849]],[\"parent/143\",[96,2.647]],[\"name/144\",[118,47.741]],[\"parent/144\",[96,2.647]],[\"name/145\",[119,52.849]],[\"parent/145\",[35,2.471]],[\"name/146\",[120,47.741]],[\"parent/146\",[35,2.471]],[\"name/147\",[121,52.849]],[\"parent/147\",[35,2.471]],[\"name/148\",[120,47.741]],[\"parent/148\",[122,4.4]],[\"name/149\",[123,52.849]],[\"parent/149\",[122,4.4]],[\"name/150\",[124,52.849]],[\"parent/150\",[122,4.4]],[\"name/151\",[125,52.849]],[\"parent/151\",[35,2.471]],[\"name/152\",[36,31.646]],[\"parent/152\",[126,4.151]],[\"name/153\",[127,52.849]],[\"parent/153\",[126,4.151]],[\"name/154\",[128,52.849]],[\"parent/154\",[126,4.151]],[\"name/155\",[129,52.849]],[\"parent/155\",[126,4.151]],[\"name/156\",[130,52.849]],[\"parent/156\",[35,2.471]],[\"name/157\",[131,44.376]],[\"parent/157\",[132,2.749]],[\"name/158\",[133,47.741]],[\"parent/158\",[132,2.749]],[\"name/159\",[134,44.376]],[\"parent/159\",[132,2.749]],[\"name/160\",[135,52.849]],[\"parent/160\",[132,2.749]],[\"name/161\",[36,31.646]],[\"parent/161\",[132,2.749]],[\"name/162\",[136,41.863]],[\"parent/162\",[132,2.749]],[\"name/163\",[137,52.849]],[\"parent/163\",[132,2.749]],[\"name/164\",[138,47.741]],[\"parent/164\",[132,2.749]],[\"name/165\",[139,52.849]],[\"parent/165\",[132,2.749]],[\"name/166\",[140,52.849]],[\"parent/166\",[132,2.749]],[\"name/167\",[141,52.849]],[\"parent/167\",[132,2.749]],[\"name/168\",[142,52.849]],[\"parent/168\",[132,2.749]],[\"name/169\",[143,52.849]],[\"parent/169\",[132,2.749]],[\"name/170\",[144,52.849]],[\"parent/170\",[132,2.749]],[\"name/171\",[145,52.849]],[\"parent/171\",[132,2.749]],[\"name/172\",[104,32.48]],[\"parent/172\",[132,2.749]],[\"name/173\",[36,31.646]],[\"parent/173\",[146,3.311]],[\"name/174\",[147,47.741]],[\"parent/174\",[146,3.311]],[\"name/175\",[148,52.849]],[\"parent/175\",[146,3.311]],[\"name/176\",[149,52.849]],[\"parent/176\",[146,3.311]],[\"name/177\",[150,52.849]],[\"parent/177\",[146,3.311]],[\"name/178\",[151,52.849]],[\"parent/178\",[146,3.311]],[\"name/179\",[152,52.849]],[\"parent/179\",[146,3.311]],[\"name/180\",[153,52.849]],[\"parent/180\",[146,3.311]],[\"name/181\",[154,47.741]],[\"parent/181\",[146,3.311]],[\"name/182\",[155,52.849]],[\"parent/182\",[146,3.311]],[\"name/183\",[156,52.849]],[\"parent/183\",[132,2.749]],[\"name/184\",[157,52.849]],[\"parent/184\",[132,2.749]],[\"name/185\",[158,52.849]],[\"parent/185\",[35,2.471]],[\"name/186\",[159,52.849]],[\"parent/186\",[35,2.471]],[\"name/187\",[160,44.376]],[\"parent/187\",[161,5.24]],[\"name/188\",[131,44.376]],[\"parent/188\",[35,2.471]],[\"name/189\",[110,44.376]],[\"parent/189\",[162,2.863]],[\"name/190\",[109,47.741]],[\"parent/190\",[162,2.863]],[\"name/191\",[163,52.849]],[\"parent/191\",[162,2.863]],[\"name/192\",[164,52.849]],[\"parent/192\",[162,2.863]],[\"name/193\",[165,52.849]],[\"parent/193\",[162,2.863]],[\"name/194\",[166,52.849]],[\"parent/194\",[162,2.863]],[\"name/195\",[111,47.741]],[\"parent/195\",[162,2.863]],[\"name/196\",[160,44.376]],[\"parent/196\",[162,2.863]],[\"name/197\",[167,52.849]],[\"parent/197\",[162,2.863]],[\"name/198\",[168,52.849]],[\"parent/198\",[162,2.863]],[\"name/199\",[169,52.849]],[\"parent/199\",[162,2.863]],[\"name/200\",[170,52.849]],[\"parent/200\",[162,2.863]],[\"name/201\",[112,47.741]],[\"parent/201\",[162,2.863]],[\"name/202\",[171,52.849]],[\"parent/202\",[162,2.863]],[\"name/203\",[172,52.849]],[\"parent/203\",[162,2.863]],[\"name/204\",[173,52.849]],[\"parent/204\",[162,2.863]],[\"name/205\",[174,52.849]],[\"parent/205\",[35,2.471]],[\"name/206\",[175,52.849]],[\"parent/206\",[35,2.471]],[\"name/207\",[99,44.376]],[\"parent/207\",[176,3.645]],[\"name/208\",[100,47.741]],[\"parent/208\",[176,3.645]],[\"name/209\",[177,47.741]],[\"parent/209\",[176,3.645]],[\"name/210\",[98,47.741]],[\"parent/210\",[176,3.645]],[\"name/211\",[101,41.863]],[\"parent/211\",[176,3.645]],[\"name/212\",[134,44.376]],[\"parent/212\",[176,3.645]],[\"name/213\",[104,32.48]],[\"parent/213\",[176,3.645]],[\"name/214\",[136,41.863]],[\"parent/214\",[178,4.4]],[\"name/215\",[39,41.863]],[\"parent/215\",[178,4.4]],[\"name/216\",[40,41.863]],[\"parent/216\",[178,4.4]],[\"name/217\",[179,52.849]],[\"parent/217\",[35,2.471]],[\"name/218\",[101,41.863]],[\"parent/218\",[180,4.151]],[\"name/219\",[181,47.741]],[\"parent/219\",[180,4.151]],[\"name/220\",[182,52.849]],[\"parent/220\",[180,4.151]],[\"name/221\",[104,32.48]],[\"parent/221\",[180,4.151]],[\"name/222\",[183,52.849]],[\"parent/222\",[184,5.24]],[\"name/223\",[185,52.849]],[\"parent/223\",[35,2.471]],[\"name/224\",[36,31.646]],[\"parent/224\",[186,3.645]],[\"name/225\",[38,38.186]],[\"parent/225\",[186,3.645]],[\"name/226\",[177,47.741]],[\"parent/226\",[186,3.645]],[\"name/227\",[187,52.849]],[\"parent/227\",[186,3.645]],[\"name/228\",[188,52.849]],[\"parent/228\",[186,3.645]],[\"name/229\",[189,52.849]],[\"parent/229\",[186,3.645]],[\"name/230\",[190,52.849]],[\"parent/230\",[186,3.645]],[\"name/231\",[191,52.849]],[\"parent/231\",[35,2.471]],[\"name/232\",[192,52.849]],[\"parent/232\",[35,2.471]],[\"name/233\",[36,31.646]],[\"parent/233\",[193,2.804]],[\"name/234\",[194,52.849]],[\"parent/234\",[193,2.804]],[\"name/235\",[160,44.376]],[\"parent/235\",[193,2.804]],[\"name/236\",[195,52.849]],[\"parent/236\",[193,2.804]],[\"name/237\",[196,52.849]],[\"parent/237\",[193,2.804]],[\"name/238\",[197,52.849]],[\"parent/238\",[193,2.804]],[\"name/239\",[198,52.849]],[\"parent/239\",[193,2.804]],[\"name/240\",[199,52.849]],[\"parent/240\",[193,2.804]],[\"name/241\",[104,32.48]],[\"parent/241\",[193,2.804]],[\"name/242\",[36,31.646]],[\"parent/242\",[200,2.925]],[\"name/243\",[39,41.863]],[\"parent/243\",[200,2.925]],[\"name/244\",[40,41.863]],[\"parent/244\",[200,2.925]],[\"name/245\",[201,52.849]],[\"parent/245\",[200,2.925]],[\"name/246\",[104,32.48]],[\"parent/246\",[200,2.925]],[\"name/247\",[202,52.849]],[\"parent/247\",[203,3.952]],[\"name/248\",[204,52.849]],[\"parent/248\",[203,3.952]],[\"name/249\",[205,52.849]],[\"parent/249\",[203,3.952]],[\"name/250\",[131,44.376]],[\"parent/250\",[193,2.804]],[\"name/251\",[104,32.48]],[\"parent/251\",[193,2.804]],[\"name/252\",[36,31.646]],[\"parent/252\",[200,2.925]],[\"name/253\",[38,38.186]],[\"parent/253\",[200,2.925]],[\"name/254\",[133,47.741]],[\"parent/254\",[200,2.925]],[\"name/255\",[104,32.48]],[\"parent/255\",[200,2.925]],[\"name/256\",[36,31.646]],[\"parent/256\",[203,3.952]],[\"name/257\",[38,38.186]],[\"parent/257\",[203,3.952]],[\"name/258\",[181,47.741]],[\"parent/258\",[193,2.804]],[\"name/259\",[104,32.48]],[\"parent/259\",[193,2.804]],[\"name/260\",[99,44.376]],[\"parent/260\",[200,2.925]],[\"name/261\",[134,44.376]],[\"parent/261\",[193,2.804]],[\"name/262\",[104,32.48]],[\"parent/262\",[193,2.804]],[\"name/263\",[36,31.646]],[\"parent/263\",[200,2.925]],[\"name/264\",[39,41.863]],[\"parent/264\",[200,2.925]],[\"name/265\",[40,41.863]],[\"parent/265\",[200,2.925]],[\"name/266\",[136,41.863]],[\"parent/266\",[200,2.925]],[\"name/267\",[118,47.741]],[\"parent/267\",[193,2.804]],[\"name/268\",[104,32.48]],[\"parent/268\",[193,2.804]],[\"name/269\",[38,38.186]],[\"parent/269\",[200,2.925]],[\"name/270\",[206,52.849]],[\"parent/270\",[35,2.471]],[\"name/271\",[207,52.849]],[\"parent/271\",[35,2.471]],[\"name/272\",[36,31.646]],[\"parent/272\",[208,2.647]],[\"name/273\",[136,41.863]],[\"parent/273\",[208,2.647]],[\"name/274\",[138,47.741]],[\"parent/274\",[208,2.647]],[\"name/275\",[209,52.849]],[\"parent/275\",[208,2.647]],[\"name/276\",[110,44.376]],[\"parent/276\",[208,2.647]],[\"name/277\",[210,52.849]],[\"parent/277\",[208,2.647]],[\"name/278\",[211,52.849]],[\"parent/278\",[208,2.647]],[\"name/279\",[147,47.741]],[\"parent/279\",[208,2.647]],[\"name/280\",[101,41.863]],[\"parent/280\",[208,2.647]],[\"name/281\",[154,47.741]],[\"parent/281\",[208,2.647]],[\"name/282\",[212,52.849]],[\"parent/282\",[208,2.647]],[\"name/283\",[213,52.849]],[\"parent/283\",[208,2.647]],[\"name/284\",[214,52.849]],[\"parent/284\",[208,2.647]],[\"name/285\",[215,52.849]],[\"parent/285\",[208,2.647]],[\"name/286\",[216,52.849]],[\"parent/286\",[208,2.647]],[\"name/287\",[217,52.849]],[\"parent/287\",[208,2.647]],[\"name/288\",[218,52.849]],[\"parent/288\",[208,2.647]],[\"name/289\",[219,52.849]],[\"parent/289\",[208,2.647]],[\"name/290\",[220,52.849]],[\"parent/290\",[208,2.647]],[\"name/291\",[221,52.849]],[\"parent/291\",[208,2.647]],[\"name/292\",[222,52.849]],[\"parent/292\",[35,2.471]],[\"name/293\",[24,47.741]],[\"parent/293\",[22,4.4]],[\"name/294\",[31,47.741]],[\"parent/294\",[22,4.4]]],\"invertedIndex\":[[\"__type\",{\"_index\":104,\"name\":{\"131\":{},\"172\":{},\"213\":{},\"221\":{},\"241\":{},\"246\":{},\"251\":{},\"255\":{},\"259\":{},\"262\":{},\"268\":{}},\"parent\":{}}],[\"_can_delete\",{\"_index\":113,\"name\":{\"139\":{}},\"parent\":{}}],[\"activitypoint\",{\"_index\":95,\"name\":{\"122\":{}},\"parent\":{}}],[\"activityresponse\",{\"_index\":119,\"name\":{\"145\":{}},\"parent\":{}}],[\"allow_attachments\",{\"_index\":151,\"name\":{\"178\":{}},\"parent\":{}}],[\"allow_comments\",{\"_index\":214,\"name\":{\"284\":{}},\"parent\":{}}],[\"allow_consent\",{\"_index\":216,\"name\":{\"286\":{}},\"parent\":{}}],[\"allow_pupils_add_timetable_notes\",{\"_index\":65,\"name\":{\"93\":{}},\"parent\":{}}],[\"allow_reactions\",{\"_index\":215,\"name\":{\"285\":{}},\"parent\":{}}],[\"announcement\",{\"_index\":207,\"name\":{\"271\":{}},\"parent\":{}}],[\"announcements_count\",{\"_index\":66,\"name\":{\"94\":{}},\"parent\":{}}],[\"announcementsresponse\",{\"_index\":222,\"name\":{\"292\":{}},\"parent\":{}}],[\"api_base\",{\"_index\":8,\"name\":{\"7\":{},\"33\":{},\"53\":{}},\"parent\":{}}],[\"api_base_parent\",{\"_index\":21,\"name\":{\"20\":{}},\"parent\":{}}],[\"api_base_student\",{\"_index\":20,\"name\":{\"19\":{}},\"parent\":{}}],[\"attachments\",{\"_index\":154,\"name\":{\"181\":{},\"281\":{}},\"parent\":{}}],[\"attended\",{\"_index\":194,\"name\":{\"234\":{}},\"parent\":{}}],[\"authcookies\",{\"_index\":6,\"name\":{\"5\":{},\"31\":{},\"51\":{}},\"parent\":{}}],[\"avatar_url\",{\"_index\":41,\"name\":{\"69\":{}},\"parent\":{}}],[\"badge\",{\"_index\":185,\"name\":{\"223\":{}},\"parent\":{}}],[\"badges\",{\"_index\":114,\"name\":{\"140\":{}},\"parent\":{}}],[\"badgesresponse\",{\"_index\":191,\"name\":{\"231\":{}},\"parent\":{}}],[\"base_url\",{\"_index\":19,\"name\":{\"18\":{}},\"parent\":{}}],[\"behaviourresponse\",{\"_index\":83,\"name\":{\"110\":{}},\"parent\":{}}],[\"behaviourtimelinepoint\",{\"_index\":77,\"name\":{\"104\":{}},\"parent\":{}}],[\"border_color\",{\"_index\":105,\"name\":{\"132\":{}},\"parent\":{}}],[\"can_change_consent\",{\"_index\":219,\"name\":{\"289\":{}},\"parent\":{}}],[\"can_upload_attachments\",{\"_index\":59,\"name\":{\"87\":{}},\"parent\":{}}],[\"classchartsclient\",{\"_index\":1,\"name\":{\"1\":{}},\"parent\":{}}],[\"classchartsparentclient\",{\"_index\":24,\"name\":{\"23\":{},\"293\":{}},\"parent\":{}}],[\"classchartsstudentclient\",{\"_index\":31,\"name\":{\"44\":{},\"294\":{}},\"parent\":{}}],[\"client\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{}}}],[\"client.classchartsclient\",{\"_index\":3,\"name\":{},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{}}}],[\"colour\",{\"_index\":187,\"name\":{\"227\":{}},\"parent\":{}}],[\"comment_visibility\",{\"_index\":213,\"name\":{\"283\":{}},\"parent\":{}}],[\"completion_time_unit\",{\"_index\":142,\"name\":{\"168\":{}},\"parent\":{}}],[\"completion_time_value\",{\"_index\":143,\"name\":{\"169\":{}},\"parent\":{}}],[\"consent\",{\"_index\":220,\"name\":{\"290\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"24\":{},\"45\":{}},\"parent\":{}}],[\"consts\",{\"_index\":18,\"name\":{\"17\":{}},\"parent\":{\"18\":{},\"19\":{},\"20\":{}}}],[\"created_date\",{\"_index\":188,\"name\":{\"228\":{}},\"parent\":{}}],[\"custom_class\",{\"_index\":107,\"name\":{\"133\":{}},\"parent\":{}}],[\"date\",{\"_index\":160,\"name\":{\"187\":{},\"196\":{},\"235\":{}},\"parent\":{}}],[\"dateofbirth\",{\"_index\":34,\"name\":{\"47\":{}},\"parent\":{}}],[\"description\",{\"_index\":138,\"name\":{\"164\":{},\"274\":{}},\"parent\":{}}],[\"description_raw\",{\"_index\":139,\"name\":{\"165\":{}},\"parent\":{}}],[\"detention\",{\"_index\":192,\"name\":{\"232\":{}},\"parent\":{}}],[\"detention_alias_plural_uc\",{\"_index\":72,\"name\":{\"100\":{}},\"parent\":{}}],[\"detention_date\",{\"_index\":115,\"name\":{\"141\":{}},\"parent\":{}}],[\"detention_location\",{\"_index\":117,\"name\":{\"143\":{}},\"parent\":{}}],[\"detention_time\",{\"_index\":116,\"name\":{\"142\":{}},\"parent\":{}}],[\"detention_type\",{\"_index\":118,\"name\":{\"144\":{},\"267\":{}},\"parent\":{}}],[\"detentionsresponse\",{\"_index\":206,\"name\":{\"270\":{}},\"parent\":{}}],[\"display_absences\",{\"_index\":58,\"name\":{\"86\":{}},\"parent\":{}}],[\"display_activity\",{\"_index\":53,\"name\":{\"81\":{}},\"parent\":{}}],[\"display_announcements\",{\"_index\":49,\"name\":{\"77\":{}},\"parent\":{}}],[\"display_attendance\",{\"_index\":50,\"name\":{\"78\":{}},\"parent\":{}}],[\"display_attendance_percentage\",{\"_index\":52,\"name\":{\"80\":{}},\"parent\":{}}],[\"display_attendance_type\",{\"_index\":51,\"name\":{\"79\":{}},\"parent\":{}}],[\"display_avatars\",{\"_index\":61,\"name\":{\"89\":{}},\"parent\":{}}],[\"display_behaviour\",{\"_index\":42,\"name\":{\"70\":{}},\"parent\":{}}],[\"display_classes\",{\"_index\":48,\"name\":{\"76\":{}},\"parent\":{}}],[\"display_concern_submission\",{\"_index\":62,\"name\":{\"90\":{}},\"parent\":{}}],[\"display_custom_fields\",{\"_index\":63,\"name\":{\"91\":{}},\"parent\":{}}],[\"display_detentions\",{\"_index\":46,\"name\":{\"74\":{}},\"parent\":{}}],[\"display_event_badges\",{\"_index\":60,\"name\":{\"88\":{}},\"parent\":{}}],[\"display_homework\",{\"_index\":44,\"name\":{\"72\":{}},\"parent\":{}}],[\"display_mental_health\",{\"_index\":54,\"name\":{\"82\":{}},\"parent\":{}}],[\"display_parent_behaviour\",{\"_index\":43,\"name\":{\"71\":{}},\"parent\":{}}],[\"display_report_cards\",{\"_index\":47,\"name\":{\"75\":{}},\"parent\":{}}],[\"display_rewards\",{\"_index\":45,\"name\":{\"73\":{}},\"parent\":{}}],[\"display_timetable\",{\"_index\":55,\"name\":{\"83\":{}},\"parent\":{}}],[\"display_two_way_communications\",{\"_index\":57,\"name\":{\"85\":{}},\"parent\":{}}],[\"displaydate\",{\"_index\":120,\"name\":{\"146\":{},\"148\":{}},\"parent\":{}}],[\"due_date\",{\"_index\":141,\"name\":{\"167\":{}},\"parent\":{}}],[\"email\",{\"_index\":27,\"name\":{\"26\":{}},\"parent\":{}}],[\"end\",{\"_index\":82,\"name\":{\"109\":{}},\"parent\":{}}],[\"end_time\",{\"_index\":168,\"name\":{\"198\":{}},\"parent\":{}}],[\"event\",{\"_index\":182,\"name\":{\"220\":{}},\"parent\":{}}],[\"file\",{\"_index\":128,\"name\":{\"154\":{}},\"parent\":{}}],[\"file_name\",{\"_index\":127,\"name\":{\"153\":{}},\"parent\":{}}],[\"first_name\",{\"_index\":39,\"name\":{\"67\":{},\"215\":{},\"243\":{},\"264\":{}},\"parent\":{}}],[\"first_seen_date\",{\"_index\":152,\"name\":{\"179\":{}},\"parent\":{}}],[\"for_pupils\",{\"_index\":212,\"name\":{\"282\":{}},\"parent\":{}}],[\"from\",{\"_index\":74,\"name\":{\"102\":{},\"119\":{}},\"parent\":{}}],[\"fromdate\",{\"_index\":123,\"name\":{\"149\":{}},\"parent\":{}}],[\"getactivity\",{\"_index\":11,\"name\":{\"10\":{},\"36\":{},\"56\":{}},\"parent\":{}}],[\"getactivityoptions\",{\"_index\":92,\"name\":{\"118\":{}},\"parent\":{}}],[\"getbadges\",{\"_index\":15,\"name\":{\"14\":{},\"40\":{},\"60\":{}},\"parent\":{}}],[\"getbehaviour\",{\"_index\":12,\"name\":{\"11\":{},\"37\":{},\"57\":{}},\"parent\":{}}],[\"getbehaviouroptions\",{\"_index\":73,\"name\":{\"101\":{}},\"parent\":{}}],[\"getdetentions\",{\"_index\":17,\"name\":{\"16\":{},\"42\":{},\"62\":{}},\"parent\":{}}],[\"gethomeworkoptions\",{\"_index\":121,\"name\":{\"147\":{}},\"parent\":{}}],[\"getlessons\",{\"_index\":14,\"name\":{\"13\":{},\"39\":{},\"59\":{}},\"parent\":{}}],[\"getlessonsoptions\",{\"_index\":159,\"name\":{\"186\":{}},\"parent\":{}}],[\"getpupils\",{\"_index\":29,\"name\":{\"28\":{}},\"parent\":{}}],[\"getstudentinfo\",{\"_index\":10,\"name\":{\"9\":{},\"35\":{},\"55\":{}},\"parent\":{}}],[\"has_birthday\",{\"_index\":69,\"name\":{\"97\":{}},\"parent\":{}}],[\"has_feedback\",{\"_index\":155,\"name\":{\"182\":{}},\"parent\":{}}],[\"has_new_survey\",{\"_index\":70,\"name\":{\"98\":{}},\"parent\":{}}],[\"homework\",{\"_index\":130,\"name\":{\"156\":{}},\"parent\":{}}],[\"homework_type\",{\"_index\":135,\"name\":{\"160\":{}},\"parent\":{}}],[\"homeworksresponse\",{\"_index\":158,\"name\":{\"185\":{}},\"parent\":{}}],[\"icon\",{\"_index\":177,\"name\":{\"209\":{},\"226\":{}},\"parent\":{}}],[\"icon_url\",{\"_index\":190,\"name\":{\"230\":{}},\"parent\":{}}],[\"id\",{\"_index\":36,\"name\":{\"65\":{},\"123\":{},\"152\":{},\"161\":{},\"173\":{},\"224\":{},\"233\":{},\"242\":{},\"252\":{},\"256\":{},\"263\":{},\"272\":{}},\"parent\":{}}],[\"index\",{\"_index\":22,\"name\":{\"21\":{}},\"parent\":{\"293\":{},\"294\":{}}}],[\"is_alternative_lesson\",{\"_index\":164,\"name\":{\"192\":{}},\"parent\":{}}],[\"is_disabled\",{\"_index\":56,\"name\":{\"84\":{}},\"parent\":{}}],[\"issue_date\",{\"_index\":140,\"name\":{\"166\":{}},\"parent\":{}}],[\"key\",{\"_index\":169,\"name\":{\"199\":{}},\"parent\":{}}],[\"label\",{\"_index\":183,\"name\":{\"222\":{}},\"parent\":{}}],[\"last_id\",{\"_index\":94,\"name\":{\"121\":{}},\"parent\":{}}],[\"last_name\",{\"_index\":40,\"name\":{\"68\":{},\"216\":{},\"244\":{},\"265\":{}},\"parent\":{}}],[\"last_seen_date\",{\"_index\":153,\"name\":{\"180\":{}},\"parent\":{}}],[\"length\",{\"_index\":195,\"name\":{\"236\":{}},\"parent\":{}}],[\"lesson\",{\"_index\":131,\"name\":{\"157\":{},\"188\":{},\"250\":{}},\"parent\":{}}],[\"lesson_name\",{\"_index\":109,\"name\":{\"135\":{},\"190\":{}},\"parent\":{}}],[\"lesson_pupil_behaviour\",{\"_index\":181,\"name\":{\"219\":{},\"258\":{}},\"parent\":{}}],[\"lessonpupilbehaviour\",{\"_index\":175,\"name\":{\"206\":{}},\"parent\":{}}],[\"lessonsresponse\",{\"_index\":174,\"name\":{\"205\":{}},\"parent\":{}}],[\"listannouncements\",{\"_index\":16,\"name\":{\"15\":{},\"41\":{},\"61\":{}},\"parent\":{}}],[\"listhomeworks\",{\"_index\":13,\"name\":{\"12\":{},\"38\":{},\"58\":{}},\"parent\":{}}],[\"location\",{\"_index\":196,\"name\":{\"237\":{}},\"parent\":{}}],[\"login\",{\"_index\":28,\"name\":{\"27\":{},\"48\":{}},\"parent\":{}}],[\"makeauthedrequest\",{\"_index\":9,\"name\":{\"8\":{},\"34\":{},\"54\":{}},\"parent\":{}}],[\"mark\",{\"_index\":148,\"name\":{\"175\":{}},\"parent\":{}}],[\"mark_relative\",{\"_index\":149,\"name\":{\"176\":{}},\"parent\":{}}],[\"messages_count\",{\"_index\":67,\"name\":{\"95\":{}},\"parent\":{}}],[\"meta_title\",{\"_index\":137,\"name\":{\"163\":{}},\"parent\":{}}],[\"name\",{\"_index\":38,\"name\":{\"66\":{},\"107\":{},\"225\":{},\"253\":{},\"257\":{},\"269\":{}},\"parent\":{}}],[\"negative\",{\"_index\":80,\"name\":{\"106\":{}},\"parent\":{}}],[\"negative_reasons\",{\"_index\":87,\"name\":{\"113\":{}},\"parent\":{}}],[\"note\",{\"_index\":112,\"name\":{\"138\":{},\"201\":{}},\"parent\":{}}],[\"note_abstract\",{\"_index\":170,\"name\":{\"200\":{}},\"parent\":{}}],[\"notes\",{\"_index\":197,\"name\":{\"238\":{}},\"parent\":{}}],[\"opt_notes_comments\",{\"_index\":204,\"name\":{\"248\":{}},\"parent\":{}}],[\"opt_notes_comments_pupils\",{\"_index\":205,\"name\":{\"249\":{}},\"parent\":{}}],[\"opt_notes_names\",{\"_index\":202,\"name\":{\"247\":{}},\"parent\":{}}],[\"other_negative\",{\"_index\":89,\"name\":{\"115\":{}},\"parent\":{}}],[\"other_negative_count\",{\"_index\":91,\"name\":{\"117\":{}},\"parent\":{}}],[\"other_positive\",{\"_index\":88,\"name\":{\"114\":{}},\"parent\":{}}],[\"other_positive_count\",{\"_index\":90,\"name\":{\"116\":{}},\"parent\":{}}],[\"parent\",{\"_index\":23,\"name\":{\"22\":{}},\"parent\":{\"23\":{}}}],[\"parent.classchartsparentclient\",{\"_index\":25,\"name\":{},\"parent\":{\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{},\"41\":{},\"42\":{}}}],[\"password\",{\"_index\":26,\"name\":{\"25\":{}},\"parent\":{}}],[\"period_name\",{\"_index\":165,\"name\":{\"193\":{}},\"parent\":{}}],[\"period_number\",{\"_index\":166,\"name\":{\"194\":{}},\"parent\":{}}],[\"polarity\",{\"_index\":98,\"name\":{\"125\":{},\"210\":{}},\"parent\":{}}],[\"positive\",{\"_index\":78,\"name\":{\"105\":{}},\"parent\":{}}],[\"positive_reasons\",{\"_index\":86,\"name\":{\"112\":{}},\"parent\":{}}],[\"priority_pinned\",{\"_index\":217,\"name\":{\"287\":{}},\"parent\":{}}],[\"publish_time\",{\"_index\":144,\"name\":{\"170\":{}},\"parent\":{}}],[\"pupil\",{\"_index\":199,\"name\":{\"240\":{}},\"parent\":{}}],[\"pupil_badges\",{\"_index\":189,\"name\":{\"229\":{}},\"parent\":{}}],[\"pupil_concerns_help_text\",{\"_index\":64,\"name\":{\"92\":{}},\"parent\":{}}],[\"pupil_consents\",{\"_index\":221,\"name\":{\"291\":{}},\"parent\":{}}],[\"pupil_name\",{\"_index\":108,\"name\":{\"134\":{}},\"parent\":{}}],[\"pupil_note\",{\"_index\":172,\"name\":{\"203\":{}},\"parent\":{}}],[\"pupil_note_abstract\",{\"_index\":171,\"name\":{\"202\":{}},\"parent\":{}}],[\"pupil_note_raw\",{\"_index\":173,\"name\":{\"204\":{}},\"parent\":{}}],[\"pupilevent\",{\"_index\":179,\"name\":{\"217\":{}},\"parent\":{}}],[\"pusher_channel_name\",{\"_index\":68,\"name\":{\"96\":{}},\"parent\":{}}],[\"reason\",{\"_index\":99,\"name\":{\"126\":{},\"207\":{},\"260\":{}},\"parent\":{}}],[\"requires_consent\",{\"_index\":218,\"name\":{\"288\":{}},\"parent\":{}}],[\"room_name\",{\"_index\":111,\"name\":{\"137\":{},\"195\":{}},\"parent\":{}}],[\"school\",{\"_index\":201,\"name\":{\"245\":{}},\"parent\":{}}],[\"school_logo\",{\"_index\":210,\"name\":{\"277\":{}},\"parent\":{}}],[\"school_name\",{\"_index\":209,\"name\":{\"275\":{}},\"parent\":{}}],[\"score\",{\"_index\":100,\"name\":{\"127\":{},\"208\":{}},\"parent\":{}}],[\"sessionid\",{\"_index\":7,\"name\":{\"6\":{},\"32\":{},\"52\":{}},\"parent\":{}}],[\"start\",{\"_index\":81,\"name\":{\"108\":{}},\"parent\":{}}],[\"start_time\",{\"_index\":167,\"name\":{\"197\":{}},\"parent\":{}}],[\"state\",{\"_index\":147,\"name\":{\"174\":{},\"279\":{}},\"parent\":{}}],[\"status\",{\"_index\":145,\"name\":{\"171\":{}},\"parent\":{}}],[\"sticky\",{\"_index\":211,\"name\":{\"278\":{}},\"parent\":{}}],[\"student\",{\"_index\":30,\"name\":{\"43\":{},\"64\":{}},\"parent\":{\"44\":{}}}],[\"student.classchartsstudentclient\",{\"_index\":32,\"name\":{},\"parent\":{\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{}}}],[\"studentcode\",{\"_index\":33,\"name\":{\"46\":{}},\"parent\":{}}],[\"studentid\",{\"_index\":4,\"name\":{\"3\":{},\"29\":{},\"49\":{}},\"parent\":{}}],[\"studentname\",{\"_index\":5,\"name\":{\"4\":{},\"30\":{},\"50\":{}},\"parent\":{}}],[\"style\",{\"_index\":103,\"name\":{\"130\":{}},\"parent\":{}}],[\"subject\",{\"_index\":133,\"name\":{\"158\":{},\"254\":{}},\"parent\":{}}],[\"subject_name\",{\"_index\":163,\"name\":{\"191\":{}},\"parent\":{}}],[\"survey_id\",{\"_index\":71,\"name\":{\"99\":{}},\"parent\":{}}],[\"teacher\",{\"_index\":134,\"name\":{\"159\":{},\"212\":{},\"261\":{}},\"parent\":{}}],[\"teacher_name\",{\"_index\":110,\"name\":{\"136\":{},\"189\":{},\"276\":{}},\"parent\":{}}],[\"ticked\",{\"_index\":150,\"name\":{\"177\":{}},\"parent\":{}}],[\"time\",{\"_index\":198,\"name\":{\"239\":{}},\"parent\":{}}],[\"timeline\",{\"_index\":84,\"name\":{\"111\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":101,\"name\":{\"128\":{},\"211\":{},\"218\":{},\"280\":{}},\"parent\":{}}],[\"timestamp_custom_time\",{\"_index\":102,\"name\":{\"129\":{}},\"parent\":{}}],[\"title\",{\"_index\":136,\"name\":{\"162\":{},\"214\":{},\"266\":{},\"273\":{}},\"parent\":{}}],[\"to\",{\"_index\":76,\"name\":{\"103\":{},\"120\":{}},\"parent\":{}}],[\"todate\",{\"_index\":124,\"name\":{\"150\":{}},\"parent\":{}}],[\"type\",{\"_index\":97,\"name\":{\"124\":{}},\"parent\":{}}],[\"types\",{\"_index\":35,\"name\":{\"63\":{}},\"parent\":{\"64\":{},\"101\":{},\"104\":{},\"110\":{},\"118\":{},\"122\":{},\"145\":{},\"146\":{},\"147\":{},\"151\":{},\"156\":{},\"185\":{},\"186\":{},\"188\":{},\"205\":{},\"206\":{},\"217\":{},\"223\":{},\"231\":{},\"232\":{},\"270\":{},\"271\":{},\"292\":{}}}],[\"types.activitypoint\",{\"_index\":96,\"name\":{},\"parent\":{\"123\":{},\"124\":{},\"125\":{},\"126\":{},\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{},\"140\":{},\"141\":{},\"142\":{},\"143\":{},\"144\":{}}}],[\"types.activitypoint.__type\",{\"_index\":106,\"name\":{},\"parent\":{\"132\":{},\"133\":{}}}],[\"types.announcement\",{\"_index\":208,\"name\":{},\"parent\":{\"272\":{},\"273\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"278\":{},\"279\":{},\"280\":{},\"281\":{},\"282\":{},\"283\":{},\"284\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"289\":{},\"290\":{},\"291\":{}}}],[\"types.badge\",{\"_index\":186,\"name\":{},\"parent\":{\"224\":{},\"225\":{},\"226\":{},\"227\":{},\"228\":{},\"229\":{},\"230\":{}}}],[\"types.behaviourresponse\",{\"_index\":85,\"name\":{},\"parent\":{\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{}}}],[\"types.behaviourtimelinepoint\",{\"_index\":79,\"name\":{},\"parent\":{\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{}}}],[\"types.detention\",{\"_index\":193,\"name\":{},\"parent\":{\"233\":{},\"234\":{},\"235\":{},\"236\":{},\"237\":{},\"238\":{},\"239\":{},\"240\":{},\"241\":{},\"250\":{},\"251\":{},\"258\":{},\"259\":{},\"261\":{},\"262\":{},\"267\":{},\"268\":{}}}],[\"types.detention.__type\",{\"_index\":200,\"name\":{},\"parent\":{\"242\":{},\"243\":{},\"244\":{},\"245\":{},\"246\":{},\"252\":{},\"253\":{},\"254\":{},\"255\":{},\"260\":{},\"263\":{},\"264\":{},\"265\":{},\"266\":{},\"269\":{}}}],[\"types.detention.__type.__type\",{\"_index\":203,\"name\":{},\"parent\":{\"247\":{},\"248\":{},\"249\":{},\"256\":{},\"257\":{}}}],[\"types.getactivityoptions\",{\"_index\":93,\"name\":{},\"parent\":{\"119\":{},\"120\":{},\"121\":{}}}],[\"types.getbehaviouroptions\",{\"_index\":75,\"name\":{},\"parent\":{\"102\":{},\"103\":{}}}],[\"types.gethomeworkoptions\",{\"_index\":122,\"name\":{},\"parent\":{\"148\":{},\"149\":{},\"150\":{}}}],[\"types.getlessonsoptions\",{\"_index\":161,\"name\":{},\"parent\":{\"187\":{}}}],[\"types.homework\",{\"_index\":132,\"name\":{},\"parent\":{\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{},\"167\":{},\"168\":{},\"169\":{},\"170\":{},\"171\":{},\"172\":{},\"183\":{},\"184\":{}}}],[\"types.homework.__type\",{\"_index\":146,\"name\":{},\"parent\":{\"173\":{},\"174\":{},\"175\":{},\"176\":{},\"177\":{},\"178\":{},\"179\":{},\"180\":{},\"181\":{},\"182\":{}}}],[\"types.lesson\",{\"_index\":162,\"name\":{},\"parent\":{\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"202\":{},\"203\":{},\"204\":{}}}],[\"types.lessonpupilbehaviour\",{\"_index\":176,\"name\":{},\"parent\":{\"207\":{},\"208\":{},\"209\":{},\"210\":{},\"211\":{},\"212\":{},\"213\":{}}}],[\"types.lessonpupilbehaviour.__type\",{\"_index\":178,\"name\":{},\"parent\":{\"214\":{},\"215\":{},\"216\":{}}}],[\"types.pupilevent\",{\"_index\":180,\"name\":{},\"parent\":{\"218\":{},\"219\":{},\"220\":{},\"221\":{}}}],[\"types.pupilevent.__type\",{\"_index\":184,\"name\":{},\"parent\":{\"222\":{}}}],[\"types.student\",{\"_index\":37,\"name\":{},\"parent\":{\"65\":{},\"66\":{},\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{},\"85\":{},\"86\":{},\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{}}}],[\"types.validatedhomeworkattachment\",{\"_index\":126,\"name\":{},\"parent\":{\"152\":{},\"153\":{},\"154\":{},\"155\":{}}}],[\"validated_attachments\",{\"_index\":157,\"name\":{\"184\":{}},\"parent\":{}}],[\"validated_file\",{\"_index\":129,\"name\":{\"155\":{}},\"parent\":{}}],[\"validated_links\",{\"_index\":156,\"name\":{\"183\":{}},\"parent\":{}}],[\"validatedhomeworkattachment\",{\"_index\":125,\"name\":{\"151\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file +window.searchData = JSON.parse("{\"kinds\":{\"2\":\"Module\",\"32\":\"Variable\",\"128\":\"Class\",\"256\":\"Interface\",\"512\":\"Constructor\",\"1024\":\"Property\",\"2048\":\"Method\",\"65536\":\"Type literal\",\"4194304\":\"Type alias\",\"16777216\":\"Reference\"},\"rows\":[{\"id\":0,\"kind\":2,\"name\":\"baseClient\",\"url\":\"modules/baseClient.html\",\"classes\":\"tsd-kind-module\"},{\"id\":1,\"kind\":128,\"name\":\"ClasschartsClient\",\"url\":\"classes/baseClient.ClasschartsClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"baseClient\"},{\"id\":2,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/baseClient.ClasschartsClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":3,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/baseClient.ClasschartsClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":4,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/baseClient.ClasschartsClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":5,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/baseClient.ClasschartsClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":6,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/baseClient.ClasschartsClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":7,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/baseClient.ClasschartsClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-protected\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":8,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/baseClient.ClasschartsClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":9,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/baseClient.ClasschartsClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":10,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/baseClient.ClasschartsClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":11,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/baseClient.ClasschartsClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":12,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/baseClient.ClasschartsClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":13,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/baseClient.ClasschartsClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":14,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/baseClient.ClasschartsClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":15,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/baseClient.ClasschartsClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":16,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/baseClient.ClasschartsClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"baseClient.ClasschartsClient\"},{\"id\":17,\"kind\":2,\"name\":\"consts\",\"url\":\"modules/consts.html\",\"classes\":\"tsd-kind-module\"},{\"id\":18,\"kind\":32,\"name\":\"BASE_URL\",\"url\":\"modules/consts.html#BASE_URL\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":19,\"kind\":32,\"name\":\"API_BASE_STUDENT\",\"url\":\"modules/consts.html#API_BASE_STUDENT\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":20,\"kind\":32,\"name\":\"API_BASE_PARENT\",\"url\":\"modules/consts.html#API_BASE_PARENT\",\"classes\":\"tsd-kind-variable tsd-parent-kind-module\",\"parent\":\"consts\"},{\"id\":21,\"kind\":2,\"name\":\"dummyClient\",\"url\":\"modules/dummyClient.html\",\"classes\":\"tsd-kind-module\"},{\"id\":22,\"kind\":128,\"name\":\"ClasschartsClient\",\"url\":\"classes/dummyClient.ClasschartsClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"dummyClient\"},{\"id\":23,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/dummyClient.ClasschartsClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":24,\"kind\":1024,\"name\":\"studentCode\",\"url\":\"classes/dummyClient.ClasschartsClient.html#studentCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":25,\"kind\":1024,\"name\":\"dateOfBirth\",\"url\":\"classes/dummyClient.ClasschartsClient.html#dateOfBirth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":26,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/dummyClient.ClasschartsClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":27,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/dummyClient.ClasschartsClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":28,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/dummyClient.ClasschartsClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":29,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/dummyClient.ClasschartsClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":30,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/dummyClient.ClasschartsClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":31,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/dummyClient.ClasschartsClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":32,\"kind\":2048,\"name\":\"init\",\"url\":\"classes/dummyClient.ClasschartsClient.html#init\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":33,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":34,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":35,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":36,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/dummyClient.ClasschartsClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":37,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":38,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":39,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/dummyClient.ClasschartsClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":40,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/dummyClient.ClasschartsClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"dummyClient.ClasschartsClient\"},{\"id\":41,\"kind\":2,\"name\":\"index\",\"url\":\"modules/index.html\",\"classes\":\"tsd-kind-module\"},{\"id\":42,\"kind\":2,\"name\":\"parentClient\",\"url\":\"modules/parentClient.html\",\"classes\":\"tsd-kind-module\"},{\"id\":43,\"kind\":128,\"name\":\"ClasschartsParentClient\",\"url\":\"classes/parentClient.ClasschartsParentClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"parentClient\"},{\"id\":44,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":45,\"kind\":1024,\"name\":\"password\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#password\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":46,\"kind\":1024,\"name\":\"email\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#email\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-private\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":47,\"kind\":1024,\"name\":\"pupils\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#pupils\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":48,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":49,\"kind\":2048,\"name\":\"getPupils\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getPupils\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":50,\"kind\":2048,\"name\":\"selectPupil\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#selectPupil\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":51,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":52,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":53,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":54,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":55,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":56,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":57,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":58,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":59,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":60,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":61,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":62,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":63,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":64,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/parentClient.ClasschartsParentClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"parentClient.ClasschartsParentClient\"},{\"id\":65,\"kind\":2,\"name\":\"studentClient\",\"url\":\"modules/studentClient.html\",\"classes\":\"tsd-kind-module\"},{\"id\":66,\"kind\":128,\"name\":\"ClasschartsStudentClient\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html\",\"classes\":\"tsd-kind-class tsd-parent-kind-module\",\"parent\":\"studentClient\"},{\"id\":67,\"kind\":512,\"name\":\"constructor\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#constructor\",\"classes\":\"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":68,\"kind\":1024,\"name\":\"studentCode\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#studentCode\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":69,\"kind\":1024,\"name\":\"dateOfBirth\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#dateOfBirth\",\"classes\":\"tsd-kind-property tsd-parent-kind-class\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":70,\"kind\":2048,\"name\":\"login\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#login\",\"classes\":\"tsd-kind-method tsd-parent-kind-class\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":71,\"kind\":1024,\"name\":\"studentId\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#studentId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":72,\"kind\":1024,\"name\":\"studentName\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#studentName\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":73,\"kind\":1024,\"name\":\"authCookies\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#authCookies\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":74,\"kind\":1024,\"name\":\"sessionId\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#sessionId\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":75,\"kind\":1024,\"name\":\"API_BASE\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#API_BASE\",\"classes\":\"tsd-kind-property tsd-parent-kind-class tsd-is-inherited tsd-is-protected\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":76,\"kind\":2048,\"name\":\"makeAuthedRequest\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#makeAuthedRequest\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":77,\"kind\":2048,\"name\":\"getStudentInfo\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getStudentInfo\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":78,\"kind\":2048,\"name\":\"getActivity\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getActivity\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":79,\"kind\":2048,\"name\":\"getBehaviour\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getBehaviour\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":80,\"kind\":2048,\"name\":\"listHomeworks\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#listHomeworks\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":81,\"kind\":2048,\"name\":\"getLessons\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getLessons\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":82,\"kind\":2048,\"name\":\"getBadges\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getBadges\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":83,\"kind\":2048,\"name\":\"listAnnouncements\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#listAnnouncements\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":84,\"kind\":2048,\"name\":\"getDetentions\",\"url\":\"classes/studentClient.ClasschartsStudentClient.html#getDetentions\",\"classes\":\"tsd-kind-method tsd-parent-kind-class tsd-is-inherited\",\"parent\":\"studentClient.ClasschartsStudentClient\"},{\"id\":85,\"kind\":2,\"name\":\"types\",\"url\":\"modules/types.html\",\"classes\":\"tsd-kind-module\"},{\"id\":86,\"kind\":256,\"name\":\"Student\",\"url\":\"interfaces/types.Student.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":87,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Student.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":88,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Student.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":89,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Student.html#first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":90,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Student.html#last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":91,\"kind\":1024,\"name\":\"avatar_url\",\"url\":\"interfaces/types.Student.html#avatar_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":92,\"kind\":1024,\"name\":\"display_behaviour\",\"url\":\"interfaces/types.Student.html#display_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":93,\"kind\":1024,\"name\":\"display_parent_behaviour\",\"url\":\"interfaces/types.Student.html#display_parent_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":94,\"kind\":1024,\"name\":\"display_homework\",\"url\":\"interfaces/types.Student.html#display_homework\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":95,\"kind\":1024,\"name\":\"display_rewards\",\"url\":\"interfaces/types.Student.html#display_rewards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":96,\"kind\":1024,\"name\":\"display_detentions\",\"url\":\"interfaces/types.Student.html#display_detentions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":97,\"kind\":1024,\"name\":\"display_report_cards\",\"url\":\"interfaces/types.Student.html#display_report_cards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":98,\"kind\":1024,\"name\":\"display_classes\",\"url\":\"interfaces/types.Student.html#display_classes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":99,\"kind\":1024,\"name\":\"display_announcements\",\"url\":\"interfaces/types.Student.html#display_announcements\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":100,\"kind\":1024,\"name\":\"display_attendance\",\"url\":\"interfaces/types.Student.html#display_attendance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":101,\"kind\":1024,\"name\":\"display_attendance_type\",\"url\":\"interfaces/types.Student.html#display_attendance_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":102,\"kind\":1024,\"name\":\"display_attendance_percentage\",\"url\":\"interfaces/types.Student.html#display_attendance_percentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":103,\"kind\":1024,\"name\":\"display_activity\",\"url\":\"interfaces/types.Student.html#display_activity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":104,\"kind\":1024,\"name\":\"display_mental_health\",\"url\":\"interfaces/types.Student.html#display_mental_health\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":105,\"kind\":1024,\"name\":\"display_timetable\",\"url\":\"interfaces/types.Student.html#display_timetable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":106,\"kind\":1024,\"name\":\"is_disabled\",\"url\":\"interfaces/types.Student.html#is_disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":107,\"kind\":1024,\"name\":\"display_two_way_communications\",\"url\":\"interfaces/types.Student.html#display_two_way_communications\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":108,\"kind\":1024,\"name\":\"display_absences\",\"url\":\"interfaces/types.Student.html#display_absences\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":109,\"kind\":1024,\"name\":\"can_upload_attachments\",\"url\":\"interfaces/types.Student.html#can_upload_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":110,\"kind\":1024,\"name\":\"display_event_badges\",\"url\":\"interfaces/types.Student.html#display_event_badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":111,\"kind\":1024,\"name\":\"display_avatars\",\"url\":\"interfaces/types.Student.html#display_avatars\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":112,\"kind\":1024,\"name\":\"display_concern_submission\",\"url\":\"interfaces/types.Student.html#display_concern_submission\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":113,\"kind\":1024,\"name\":\"display_custom_fields\",\"url\":\"interfaces/types.Student.html#display_custom_fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":114,\"kind\":1024,\"name\":\"pupil_concerns_help_text\",\"url\":\"interfaces/types.Student.html#pupil_concerns_help_text\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":115,\"kind\":1024,\"name\":\"allow_pupils_add_timetable_notes\",\"url\":\"interfaces/types.Student.html#allow_pupils_add_timetable_notes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":116,\"kind\":1024,\"name\":\"announcements_count\",\"url\":\"interfaces/types.Student.html#announcements_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":117,\"kind\":1024,\"name\":\"messages_count\",\"url\":\"interfaces/types.Student.html#messages_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":118,\"kind\":1024,\"name\":\"pusher_channel_name\",\"url\":\"interfaces/types.Student.html#pusher_channel_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":119,\"kind\":1024,\"name\":\"has_birthday\",\"url\":\"interfaces/types.Student.html#has_birthday\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":120,\"kind\":1024,\"name\":\"has_new_survey\",\"url\":\"interfaces/types.Student.html#has_new_survey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":121,\"kind\":1024,\"name\":\"survey_id\",\"url\":\"interfaces/types.Student.html#survey_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":122,\"kind\":1024,\"name\":\"detention_alias_plural_uc\",\"url\":\"interfaces/types.Student.html#detention_alias_plural_uc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Student\"},{\"id\":123,\"kind\":256,\"name\":\"GetBehaviourOptions\",\"url\":\"interfaces/types.GetBehaviourOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":124,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types.GetBehaviourOptions.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetBehaviourOptions\"},{\"id\":125,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/types.GetBehaviourOptions.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetBehaviourOptions\"},{\"id\":126,\"kind\":256,\"name\":\"BehaviourTimelinePoint\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":127,\"kind\":1024,\"name\":\"positive\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#positive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":128,\"kind\":1024,\"name\":\"negative\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":129,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":130,\"kind\":1024,\"name\":\"start\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#start\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":131,\"kind\":1024,\"name\":\"end\",\"url\":\"interfaces/types.BehaviourTimelinePoint.html#end\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourTimelinePoint\"},{\"id\":132,\"kind\":256,\"name\":\"BehaviourResponse\",\"url\":\"interfaces/types.BehaviourResponse.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":133,\"kind\":1024,\"name\":\"timeline\",\"url\":\"interfaces/types.BehaviourResponse.html#timeline\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":134,\"kind\":1024,\"name\":\"positive_reasons\",\"url\":\"interfaces/types.BehaviourResponse.html#positive_reasons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":135,\"kind\":1024,\"name\":\"negative_reasons\",\"url\":\"interfaces/types.BehaviourResponse.html#negative_reasons\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":136,\"kind\":1024,\"name\":\"other_positive\",\"url\":\"interfaces/types.BehaviourResponse.html#other_positive\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":137,\"kind\":1024,\"name\":\"other_negative\",\"url\":\"interfaces/types.BehaviourResponse.html#other_negative\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":138,\"kind\":1024,\"name\":\"other_positive_count\",\"url\":\"interfaces/types.BehaviourResponse.html#other_positive_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":139,\"kind\":1024,\"name\":\"other_negative_count\",\"url\":\"interfaces/types.BehaviourResponse.html#other_negative_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.BehaviourResponse\"},{\"id\":140,\"kind\":256,\"name\":\"GetActivityOptions\",\"url\":\"interfaces/types.GetActivityOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":141,\"kind\":1024,\"name\":\"from\",\"url\":\"interfaces/types.GetActivityOptions.html#from\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":142,\"kind\":1024,\"name\":\"to\",\"url\":\"interfaces/types.GetActivityOptions.html#to\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":143,\"kind\":1024,\"name\":\"last_id\",\"url\":\"interfaces/types.GetActivityOptions.html#last_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetActivityOptions\"},{\"id\":144,\"kind\":256,\"name\":\"ActivityPoint\",\"url\":\"interfaces/types.ActivityPoint.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":145,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.ActivityPoint.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":146,\"kind\":1024,\"name\":\"type\",\"url\":\"interfaces/types.ActivityPoint.html#type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":147,\"kind\":1024,\"name\":\"polarity\",\"url\":\"interfaces/types.ActivityPoint.html#polarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":148,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.ActivityPoint.html#reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":149,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/types.ActivityPoint.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":150,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.ActivityPoint.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":151,\"kind\":1024,\"name\":\"timestamp_custom_time\",\"url\":\"interfaces/types.ActivityPoint.html#timestamp_custom_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":152,\"kind\":1024,\"name\":\"style\",\"url\":\"interfaces/types.ActivityPoint.html#style\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":153,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.ActivityPoint.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":154,\"kind\":1024,\"name\":\"border_color\",\"url\":\"interfaces/types.ActivityPoint.html#__type.border_color\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.ActivityPoint.__type\"},{\"id\":155,\"kind\":1024,\"name\":\"custom_class\",\"url\":\"interfaces/types.ActivityPoint.html#__type.custom_class\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.ActivityPoint.__type\"},{\"id\":156,\"kind\":1024,\"name\":\"pupil_name\",\"url\":\"interfaces/types.ActivityPoint.html#pupil_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":157,\"kind\":1024,\"name\":\"lesson_name\",\"url\":\"interfaces/types.ActivityPoint.html#lesson_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":158,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.ActivityPoint.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":159,\"kind\":1024,\"name\":\"room_name\",\"url\":\"interfaces/types.ActivityPoint.html#room_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":160,\"kind\":1024,\"name\":\"note\",\"url\":\"interfaces/types.ActivityPoint.html#note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":161,\"kind\":1024,\"name\":\"_can_delete\",\"url\":\"interfaces/types.ActivityPoint.html#_can_delete\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":162,\"kind\":1024,\"name\":\"badges\",\"url\":\"interfaces/types.ActivityPoint.html#badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":163,\"kind\":1024,\"name\":\"detention_date\",\"url\":\"interfaces/types.ActivityPoint.html#detention_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":164,\"kind\":1024,\"name\":\"detention_time\",\"url\":\"interfaces/types.ActivityPoint.html#detention_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":165,\"kind\":1024,\"name\":\"detention_location\",\"url\":\"interfaces/types.ActivityPoint.html#detention_location\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":166,\"kind\":1024,\"name\":\"detention_type\",\"url\":\"interfaces/types.ActivityPoint.html#detention_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ActivityPoint\"},{\"id\":167,\"kind\":4194304,\"name\":\"ActivityResponse\",\"url\":\"modules/types.html#ActivityResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":168,\"kind\":4194304,\"name\":\"DisplayDate\",\"url\":\"modules/types.html#DisplayDate\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":169,\"kind\":256,\"name\":\"GetHomeworkOptions\",\"url\":\"interfaces/types.GetHomeworkOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":170,\"kind\":1024,\"name\":\"displayDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#displayDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":171,\"kind\":1024,\"name\":\"fromDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#fromDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":172,\"kind\":1024,\"name\":\"toDate\",\"url\":\"interfaces/types.GetHomeworkOptions.html#toDate\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetHomeworkOptions\"},{\"id\":173,\"kind\":256,\"name\":\"ValidatedHomeworkAttachment\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":174,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":175,\"kind\":1024,\"name\":\"file_name\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#file_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":176,\"kind\":1024,\"name\":\"file\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#file\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":177,\"kind\":1024,\"name\":\"validated_file\",\"url\":\"interfaces/types.ValidatedHomeworkAttachment.html#validated_file\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.ValidatedHomeworkAttachment\"},{\"id\":178,\"kind\":256,\"name\":\"Homework\",\"url\":\"interfaces/types.Homework.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":179,\"kind\":1024,\"name\":\"lesson\",\"url\":\"interfaces/types.Homework.html#lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":180,\"kind\":1024,\"name\":\"subject\",\"url\":\"interfaces/types.Homework.html#subject\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":181,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.Homework.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":182,\"kind\":1024,\"name\":\"homework_type\",\"url\":\"interfaces/types.Homework.html#homework_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":183,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Homework.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":184,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Homework.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":185,\"kind\":1024,\"name\":\"meta_title\",\"url\":\"interfaces/types.Homework.html#meta_title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":186,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types.Homework.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":187,\"kind\":1024,\"name\":\"description_raw\",\"url\":\"interfaces/types.Homework.html#description_raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":188,\"kind\":1024,\"name\":\"issue_date\",\"url\":\"interfaces/types.Homework.html#issue_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":189,\"kind\":1024,\"name\":\"due_date\",\"url\":\"interfaces/types.Homework.html#due_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":190,\"kind\":1024,\"name\":\"completion_time_unit\",\"url\":\"interfaces/types.Homework.html#completion_time_unit\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":191,\"kind\":1024,\"name\":\"completion_time_value\",\"url\":\"interfaces/types.Homework.html#completion_time_value\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":192,\"kind\":1024,\"name\":\"publish_time\",\"url\":\"interfaces/types.Homework.html#publish_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":193,\"kind\":1024,\"name\":\"status\",\"url\":\"interfaces/types.Homework.html#status\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":194,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Homework.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":195,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Homework.html#__type.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":196,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/types.Homework.html#__type.state\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":197,\"kind\":1024,\"name\":\"mark\",\"url\":\"interfaces/types.Homework.html#__type.mark\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":198,\"kind\":1024,\"name\":\"mark_relative\",\"url\":\"interfaces/types.Homework.html#__type.mark_relative\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":199,\"kind\":1024,\"name\":\"ticked\",\"url\":\"interfaces/types.Homework.html#__type.ticked\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":200,\"kind\":1024,\"name\":\"allow_attachments\",\"url\":\"interfaces/types.Homework.html#__type.allow_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":201,\"kind\":1024,\"name\":\"first_seen_date\",\"url\":\"interfaces/types.Homework.html#__type.first_seen_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":202,\"kind\":1024,\"name\":\"last_seen_date\",\"url\":\"interfaces/types.Homework.html#__type.last_seen_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":203,\"kind\":1024,\"name\":\"attachments\",\"url\":\"interfaces/types.Homework.html#__type.attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":204,\"kind\":1024,\"name\":\"has_feedback\",\"url\":\"interfaces/types.Homework.html#__type.has_feedback\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Homework.__type\"},{\"id\":205,\"kind\":1024,\"name\":\"validated_links\",\"url\":\"interfaces/types.Homework.html#validated_links\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":206,\"kind\":1024,\"name\":\"validated_attachments\",\"url\":\"interfaces/types.Homework.html#validated_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Homework\"},{\"id\":207,\"kind\":4194304,\"name\":\"HomeworksResponse\",\"url\":\"modules/types.html#HomeworksResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":208,\"kind\":256,\"name\":\"GetLessonsOptions\",\"url\":\"interfaces/types.GetLessonsOptions.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":209,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.GetLessonsOptions.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.GetLessonsOptions\"},{\"id\":210,\"kind\":256,\"name\":\"Lesson\",\"url\":\"interfaces/types.Lesson.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":211,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.Lesson.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":212,\"kind\":1024,\"name\":\"lesson_name\",\"url\":\"interfaces/types.Lesson.html#lesson_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":213,\"kind\":1024,\"name\":\"subject_name\",\"url\":\"interfaces/types.Lesson.html#subject_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":214,\"kind\":1024,\"name\":\"is_alternative_lesson\",\"url\":\"interfaces/types.Lesson.html#is_alternative_lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":215,\"kind\":1024,\"name\":\"period_name\",\"url\":\"interfaces/types.Lesson.html#period_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":216,\"kind\":1024,\"name\":\"period_number\",\"url\":\"interfaces/types.Lesson.html#period_number\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":217,\"kind\":1024,\"name\":\"room_name\",\"url\":\"interfaces/types.Lesson.html#room_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":218,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.Lesson.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":219,\"kind\":1024,\"name\":\"start_time\",\"url\":\"interfaces/types.Lesson.html#start_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":220,\"kind\":1024,\"name\":\"end_time\",\"url\":\"interfaces/types.Lesson.html#end_time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":221,\"kind\":1024,\"name\":\"key\",\"url\":\"interfaces/types.Lesson.html#key\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":222,\"kind\":1024,\"name\":\"note_abstract\",\"url\":\"interfaces/types.Lesson.html#note_abstract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":223,\"kind\":1024,\"name\":\"note\",\"url\":\"interfaces/types.Lesson.html#note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":224,\"kind\":1024,\"name\":\"pupil_note_abstract\",\"url\":\"interfaces/types.Lesson.html#pupil_note_abstract\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":225,\"kind\":1024,\"name\":\"pupil_note\",\"url\":\"interfaces/types.Lesson.html#pupil_note\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":226,\"kind\":1024,\"name\":\"pupil_note_raw\",\"url\":\"interfaces/types.Lesson.html#pupil_note_raw\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Lesson\"},{\"id\":227,\"kind\":4194304,\"name\":\"LessonsResponse\",\"url\":\"modules/types.html#LessonsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":228,\"kind\":256,\"name\":\"LessonPupilBehaviour\",\"url\":\"interfaces/types.LessonPupilBehaviour.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":229,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":230,\"kind\":1024,\"name\":\"score\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#score\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":231,\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#icon\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":232,\"kind\":1024,\"name\":\"polarity\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#polarity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":233,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":234,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":235,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.LessonPupilBehaviour\"},{\"id\":236,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":237,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":238,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.LessonPupilBehaviour.html#__type.last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.LessonPupilBehaviour.__type\"},{\"id\":239,\"kind\":256,\"name\":\"PupilEvent\",\"url\":\"interfaces/types.PupilEvent.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":240,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.PupilEvent.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":241,\"kind\":1024,\"name\":\"lesson_pupil_behaviour\",\"url\":\"interfaces/types.PupilEvent.html#lesson_pupil_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":242,\"kind\":1024,\"name\":\"event\",\"url\":\"interfaces/types.PupilEvent.html#event\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":243,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.PupilEvent.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.PupilEvent\"},{\"id\":244,\"kind\":1024,\"name\":\"label\",\"url\":\"interfaces/types.PupilEvent.html#__type.label\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.PupilEvent.__type\"},{\"id\":245,\"kind\":256,\"name\":\"Badge\",\"url\":\"interfaces/types.Badge.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":246,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Badge.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":247,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Badge.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":248,\"kind\":1024,\"name\":\"icon\",\"url\":\"interfaces/types.Badge.html#icon\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":249,\"kind\":1024,\"name\":\"colour\",\"url\":\"interfaces/types.Badge.html#colour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":250,\"kind\":1024,\"name\":\"created_date\",\"url\":\"interfaces/types.Badge.html#created_date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":251,\"kind\":1024,\"name\":\"pupil_badges\",\"url\":\"interfaces/types.Badge.html#pupil_badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":252,\"kind\":1024,\"name\":\"icon_url\",\"url\":\"interfaces/types.Badge.html#icon_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Badge\"},{\"id\":253,\"kind\":4194304,\"name\":\"BadgesResponse\",\"url\":\"modules/types.html#BadgesResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":254,\"kind\":256,\"name\":\"Detention\",\"url\":\"interfaces/types.Detention.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":255,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":256,\"kind\":1024,\"name\":\"attended\",\"url\":\"interfaces/types.Detention.html#attended\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":257,\"kind\":1024,\"name\":\"date\",\"url\":\"interfaces/types.Detention.html#date\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":258,\"kind\":1024,\"name\":\"length\",\"url\":\"interfaces/types.Detention.html#length\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":259,\"kind\":1024,\"name\":\"location\",\"url\":\"interfaces/types.Detention.html#location\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":260,\"kind\":1024,\"name\":\"notes\",\"url\":\"interfaces/types.Detention.html#notes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":261,\"kind\":1024,\"name\":\"time\",\"url\":\"interfaces/types.Detention.html#time\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":262,\"kind\":1024,\"name\":\"pupil\",\"url\":\"interfaces/types.Detention.html#pupil\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":263,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-4\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":264,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-4.id-3\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":265,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Detention.html#__type-4.first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":266,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Detention.html#__type-4.last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":267,\"kind\":1024,\"name\":\"school\",\"url\":\"interfaces/types.Detention.html#__type-4.school\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":268,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":269,\"kind\":1024,\"name\":\"opt_notes_names\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_names\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":270,\"kind\":1024,\"name\":\"opt_notes_comments\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_comments\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":271,\"kind\":1024,\"name\":\"opt_notes_comments_pupils\",\"url\":\"interfaces/types.Detention.html#__type-4.__type-5.opt_notes_comments_pupils\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":272,\"kind\":1024,\"name\":\"lesson\",\"url\":\"interfaces/types.Detention.html#lesson\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":273,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-1\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":274,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-1.id-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":275,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type-1.name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":276,\"kind\":1024,\"name\":\"subject\",\"url\":\"interfaces/types.Detention.html#__type-1.subject\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":277,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":278,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2.id-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":279,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type-1.__type-2.name-2\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type.__type\"},{\"id\":280,\"kind\":1024,\"name\":\"lesson_pupil_behaviour\",\"url\":\"interfaces/types.Detention.html#lesson_pupil_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":281,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-3\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":282,\"kind\":1024,\"name\":\"reason\",\"url\":\"interfaces/types.Detention.html#__type-3.reason\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":283,\"kind\":1024,\"name\":\"teacher\",\"url\":\"interfaces/types.Detention.html#teacher\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":284,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type-6\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":285,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Detention.html#__type-6.id-4\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":286,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Detention.html#__type-6.first_name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":287,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Detention.html#__type-6.last_name-1\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":288,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Detention.html#__type-6.title\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":289,\"kind\":1024,\"name\":\"detention_type\",\"url\":\"interfaces/types.Detention.html#detention_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":290,\"kind\":65536,\"name\":\"__type\",\"url\":\"interfaces/types.Detention.html#__type\",\"classes\":\"tsd-kind-type-literal tsd-parent-kind-interface\",\"parent\":\"types.Detention\"},{\"id\":291,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Detention.html#__type.name\",\"classes\":\"tsd-kind-property tsd-parent-kind-type-literal\",\"parent\":\"types.Detention.__type\"},{\"id\":292,\"kind\":4194304,\"name\":\"DetentionsResponse\",\"url\":\"modules/types.html#DetentionsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":293,\"kind\":256,\"name\":\"Announcement\",\"url\":\"interfaces/types.Announcement.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":294,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Announcement.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":295,\"kind\":1024,\"name\":\"title\",\"url\":\"interfaces/types.Announcement.html#title\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":296,\"kind\":1024,\"name\":\"description\",\"url\":\"interfaces/types.Announcement.html#description\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":297,\"kind\":1024,\"name\":\"school_name\",\"url\":\"interfaces/types.Announcement.html#school_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":298,\"kind\":1024,\"name\":\"teacher_name\",\"url\":\"interfaces/types.Announcement.html#teacher_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":299,\"kind\":1024,\"name\":\"school_logo\",\"url\":\"interfaces/types.Announcement.html#school_logo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":300,\"kind\":1024,\"name\":\"sticky\",\"url\":\"interfaces/types.Announcement.html#sticky\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":301,\"kind\":1024,\"name\":\"state\",\"url\":\"interfaces/types.Announcement.html#state\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":302,\"kind\":1024,\"name\":\"timestamp\",\"url\":\"interfaces/types.Announcement.html#timestamp\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":303,\"kind\":1024,\"name\":\"attachments\",\"url\":\"interfaces/types.Announcement.html#attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":304,\"kind\":1024,\"name\":\"for_pupils\",\"url\":\"interfaces/types.Announcement.html#for_pupils\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":305,\"kind\":1024,\"name\":\"comment_visibility\",\"url\":\"interfaces/types.Announcement.html#comment_visibility\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":306,\"kind\":1024,\"name\":\"allow_comments\",\"url\":\"interfaces/types.Announcement.html#allow_comments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":307,\"kind\":1024,\"name\":\"allow_reactions\",\"url\":\"interfaces/types.Announcement.html#allow_reactions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":308,\"kind\":1024,\"name\":\"allow_consent\",\"url\":\"interfaces/types.Announcement.html#allow_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":309,\"kind\":1024,\"name\":\"priority_pinned\",\"url\":\"interfaces/types.Announcement.html#priority_pinned\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":310,\"kind\":1024,\"name\":\"requires_consent\",\"url\":\"interfaces/types.Announcement.html#requires_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":311,\"kind\":1024,\"name\":\"can_change_consent\",\"url\":\"interfaces/types.Announcement.html#can_change_consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":312,\"kind\":1024,\"name\":\"consent\",\"url\":\"interfaces/types.Announcement.html#consent\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":313,\"kind\":1024,\"name\":\"pupil_consents\",\"url\":\"interfaces/types.Announcement.html#pupil_consents\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Announcement\"},{\"id\":314,\"kind\":4194304,\"name\":\"AnnouncementsResponse\",\"url\":\"modules/types.html#AnnouncementsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":315,\"kind\":256,\"name\":\"Pupil\",\"url\":\"interfaces/types.Pupil.html\",\"classes\":\"tsd-kind-interface tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":316,\"kind\":1024,\"name\":\"school_name\",\"url\":\"interfaces/types.Pupil.html#school_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":317,\"kind\":1024,\"name\":\"school_logo\",\"url\":\"interfaces/types.Pupil.html#school_logo\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":318,\"kind\":1024,\"name\":\"timezone\",\"url\":\"interfaces/types.Pupil.html#timezone\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":319,\"kind\":1024,\"name\":\"display_covid_tests\",\"url\":\"interfaces/types.Pupil.html#display_covid_tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":320,\"kind\":1024,\"name\":\"can_record_covid_tests\",\"url\":\"interfaces/types.Pupil.html#can_record_covid_tests\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":321,\"kind\":1024,\"name\":\"detention_yes_count\",\"url\":\"interfaces/types.Pupil.html#detention_yes_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":322,\"kind\":1024,\"name\":\"detention_no_count\",\"url\":\"interfaces/types.Pupil.html#detention_no_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":323,\"kind\":1024,\"name\":\"detention_pending_count\",\"url\":\"interfaces/types.Pupil.html#detention_pending_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":324,\"kind\":1024,\"name\":\"detention_upscaled_count\",\"url\":\"interfaces/types.Pupil.html#detention_upscaled_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":325,\"kind\":1024,\"name\":\"homework_todo_count\",\"url\":\"interfaces/types.Pupil.html#homework_todo_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":326,\"kind\":1024,\"name\":\"homework_late_count\",\"url\":\"interfaces/types.Pupil.html#homework_late_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":327,\"kind\":1024,\"name\":\"homework_not_completed_count\",\"url\":\"interfaces/types.Pupil.html#homework_not_completed_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":328,\"kind\":1024,\"name\":\"homework_excused_count\",\"url\":\"interfaces/types.Pupil.html#homework_excused_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":329,\"kind\":1024,\"name\":\"homework_completed_count\",\"url\":\"interfaces/types.Pupil.html#homework_completed_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":330,\"kind\":1024,\"name\":\"homework_submitted_count\",\"url\":\"interfaces/types.Pupil.html#homework_submitted_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface\",\"parent\":\"types.Pupil\"},{\"id\":331,\"kind\":1024,\"name\":\"announcements_count\",\"url\":\"interfaces/types.Pupil.html#announcements_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"types.Pupil\"},{\"id\":332,\"kind\":1024,\"name\":\"messages_count\",\"url\":\"interfaces/types.Pupil.html#messages_count\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-overwrite\",\"parent\":\"types.Pupil\"},{\"id\":333,\"kind\":1024,\"name\":\"id\",\"url\":\"interfaces/types.Pupil.html#id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":334,\"kind\":1024,\"name\":\"name\",\"url\":\"interfaces/types.Pupil.html#name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":335,\"kind\":1024,\"name\":\"first_name\",\"url\":\"interfaces/types.Pupil.html#first_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":336,\"kind\":1024,\"name\":\"last_name\",\"url\":\"interfaces/types.Pupil.html#last_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":337,\"kind\":1024,\"name\":\"avatar_url\",\"url\":\"interfaces/types.Pupil.html#avatar_url\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":338,\"kind\":1024,\"name\":\"display_behaviour\",\"url\":\"interfaces/types.Pupil.html#display_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":339,\"kind\":1024,\"name\":\"display_parent_behaviour\",\"url\":\"interfaces/types.Pupil.html#display_parent_behaviour\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":340,\"kind\":1024,\"name\":\"display_homework\",\"url\":\"interfaces/types.Pupil.html#display_homework\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":341,\"kind\":1024,\"name\":\"display_rewards\",\"url\":\"interfaces/types.Pupil.html#display_rewards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":342,\"kind\":1024,\"name\":\"display_detentions\",\"url\":\"interfaces/types.Pupil.html#display_detentions\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":343,\"kind\":1024,\"name\":\"display_report_cards\",\"url\":\"interfaces/types.Pupil.html#display_report_cards\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":344,\"kind\":1024,\"name\":\"display_classes\",\"url\":\"interfaces/types.Pupil.html#display_classes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":345,\"kind\":1024,\"name\":\"display_announcements\",\"url\":\"interfaces/types.Pupil.html#display_announcements\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":346,\"kind\":1024,\"name\":\"display_attendance\",\"url\":\"interfaces/types.Pupil.html#display_attendance\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":347,\"kind\":1024,\"name\":\"display_attendance_type\",\"url\":\"interfaces/types.Pupil.html#display_attendance_type\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":348,\"kind\":1024,\"name\":\"display_attendance_percentage\",\"url\":\"interfaces/types.Pupil.html#display_attendance_percentage\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":349,\"kind\":1024,\"name\":\"display_activity\",\"url\":\"interfaces/types.Pupil.html#display_activity\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":350,\"kind\":1024,\"name\":\"display_mental_health\",\"url\":\"interfaces/types.Pupil.html#display_mental_health\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":351,\"kind\":1024,\"name\":\"display_timetable\",\"url\":\"interfaces/types.Pupil.html#display_timetable\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":352,\"kind\":1024,\"name\":\"is_disabled\",\"url\":\"interfaces/types.Pupil.html#is_disabled\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":353,\"kind\":1024,\"name\":\"display_two_way_communications\",\"url\":\"interfaces/types.Pupil.html#display_two_way_communications\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":354,\"kind\":1024,\"name\":\"display_absences\",\"url\":\"interfaces/types.Pupil.html#display_absences\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":355,\"kind\":1024,\"name\":\"can_upload_attachments\",\"url\":\"interfaces/types.Pupil.html#can_upload_attachments\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":356,\"kind\":1024,\"name\":\"display_event_badges\",\"url\":\"interfaces/types.Pupil.html#display_event_badges\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":357,\"kind\":1024,\"name\":\"display_avatars\",\"url\":\"interfaces/types.Pupil.html#display_avatars\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":358,\"kind\":1024,\"name\":\"display_concern_submission\",\"url\":\"interfaces/types.Pupil.html#display_concern_submission\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":359,\"kind\":1024,\"name\":\"display_custom_fields\",\"url\":\"interfaces/types.Pupil.html#display_custom_fields\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":360,\"kind\":1024,\"name\":\"pupil_concerns_help_text\",\"url\":\"interfaces/types.Pupil.html#pupil_concerns_help_text\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":361,\"kind\":1024,\"name\":\"allow_pupils_add_timetable_notes\",\"url\":\"interfaces/types.Pupil.html#allow_pupils_add_timetable_notes\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":362,\"kind\":1024,\"name\":\"pusher_channel_name\",\"url\":\"interfaces/types.Pupil.html#pusher_channel_name\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":363,\"kind\":1024,\"name\":\"has_birthday\",\"url\":\"interfaces/types.Pupil.html#has_birthday\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":364,\"kind\":1024,\"name\":\"has_new_survey\",\"url\":\"interfaces/types.Pupil.html#has_new_survey\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":365,\"kind\":1024,\"name\":\"survey_id\",\"url\":\"interfaces/types.Pupil.html#survey_id\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":366,\"kind\":1024,\"name\":\"detention_alias_plural_uc\",\"url\":\"interfaces/types.Pupil.html#detention_alias_plural_uc\",\"classes\":\"tsd-kind-property tsd-parent-kind-interface tsd-is-inherited\",\"parent\":\"types.Pupil\"},{\"id\":367,\"kind\":4194304,\"name\":\"GetPupilsResponse\",\"url\":\"modules/types.html#GetPupilsResponse\",\"classes\":\"tsd-kind-type-alias tsd-parent-kind-module\",\"parent\":\"types\"},{\"id\":368,\"kind\":16777216,\"name\":\"ClasschartsParentClient\",\"url\":\"modules/index.html#ClasschartsParentClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":369,\"kind\":16777216,\"name\":\"ClasschartsStudentClient\",\"url\":\"modules/index.html#ClasschartsStudentClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":370,\"kind\":16777216,\"name\":\"Student\",\"url\":\"modules/index.html#Student\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":371,\"kind\":16777216,\"name\":\"GetBehaviourOptions\",\"url\":\"modules/index.html#GetBehaviourOptions\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":372,\"kind\":16777216,\"name\":\"BehaviourTimelinePoint\",\"url\":\"modules/index.html#BehaviourTimelinePoint\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":373,\"kind\":16777216,\"name\":\"BehaviourResponse\",\"url\":\"modules/index.html#BehaviourResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":374,\"kind\":16777216,\"name\":\"GetActivityOptions\",\"url\":\"modules/index.html#GetActivityOptions\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":375,\"kind\":16777216,\"name\":\"ActivityPoint\",\"url\":\"modules/index.html#ActivityPoint\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":376,\"kind\":16777216,\"name\":\"ActivityResponse\",\"url\":\"modules/index.html#ActivityResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":377,\"kind\":16777216,\"name\":\"DisplayDate\",\"url\":\"modules/index.html#DisplayDate\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":378,\"kind\":16777216,\"name\":\"GetHomeworkOptions\",\"url\":\"modules/index.html#GetHomeworkOptions\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":379,\"kind\":16777216,\"name\":\"ValidatedHomeworkAttachment\",\"url\":\"modules/index.html#ValidatedHomeworkAttachment\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":380,\"kind\":16777216,\"name\":\"Homework\",\"url\":\"modules/index.html#Homework\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":381,\"kind\":16777216,\"name\":\"HomeworksResponse\",\"url\":\"modules/index.html#HomeworksResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":382,\"kind\":16777216,\"name\":\"GetLessonsOptions\",\"url\":\"modules/index.html#GetLessonsOptions\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":383,\"kind\":16777216,\"name\":\"Lesson\",\"url\":\"modules/index.html#Lesson\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":384,\"kind\":16777216,\"name\":\"LessonsResponse\",\"url\":\"modules/index.html#LessonsResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":385,\"kind\":16777216,\"name\":\"LessonPupilBehaviour\",\"url\":\"modules/index.html#LessonPupilBehaviour\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":386,\"kind\":16777216,\"name\":\"PupilEvent\",\"url\":\"modules/index.html#PupilEvent\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":387,\"kind\":16777216,\"name\":\"Badge\",\"url\":\"modules/index.html#Badge\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":388,\"kind\":16777216,\"name\":\"BadgesResponse\",\"url\":\"modules/index.html#BadgesResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":389,\"kind\":16777216,\"name\":\"Detention\",\"url\":\"modules/index.html#Detention\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":390,\"kind\":16777216,\"name\":\"DetentionsResponse\",\"url\":\"modules/index.html#DetentionsResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":391,\"kind\":16777216,\"name\":\"Announcement\",\"url\":\"modules/index.html#Announcement\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":392,\"kind\":16777216,\"name\":\"AnnouncementsResponse\",\"url\":\"modules/index.html#AnnouncementsResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":393,\"kind\":16777216,\"name\":\"Pupil\",\"url\":\"modules/index.html#Pupil\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":394,\"kind\":16777216,\"name\":\"GetPupilsResponse\",\"url\":\"modules/index.html#GetPupilsResponse\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"},{\"id\":395,\"kind\":16777216,\"name\":\"ClasschartsClient\",\"url\":\"modules/index.html#ClasschartsClient\",\"classes\":\"tsd-kind-reference tsd-parent-kind-module\",\"parent\":\"index\"}],\"index\":{\"version\":\"2.3.9\",\"fields\":[\"name\",\"parent\"],\"fieldVectors\":[[\"name/0\",[0,50.676]],[\"parent/0\",[]],[\"name/1\",[1,47.312]],[\"parent/1\",[0,5.031]],[\"name/2\",[2,44.799]],[\"parent/2\",[3,3.219]],[\"name/3\",[4,44.799]],[\"parent/3\",[3,3.219]],[\"name/4\",[5,44.799]],[\"parent/4\",[3,3.219]],[\"name/5\",[6,44.799]],[\"parent/5\",[3,3.219]],[\"name/6\",[7,44.799]],[\"parent/6\",[3,3.219]],[\"name/7\",[8,47.312]],[\"parent/7\",[3,3.219]],[\"name/8\",[9,44.799]],[\"parent/8\",[3,3.219]],[\"name/9\",[10,44.799]],[\"parent/9\",[3,3.219]],[\"name/10\",[11,44.799]],[\"parent/10\",[3,3.219]],[\"name/11\",[12,44.799]],[\"parent/11\",[3,3.219]],[\"name/12\",[13,44.799]],[\"parent/12\",[3,3.219]],[\"name/13\",[14,44.799]],[\"parent/13\",[3,3.219]],[\"name/14\",[15,44.799]],[\"parent/14\",[3,3.219]],[\"name/15\",[16,44.799]],[\"parent/15\",[3,3.219]],[\"name/16\",[17,44.799]],[\"parent/16\",[3,3.219]],[\"name/17\",[18,44.799]],[\"parent/17\",[]],[\"name/18\",[19,55.785]],[\"parent/18\",[18,4.447]],[\"name/19\",[20,55.785]],[\"parent/19\",[18,4.447]],[\"name/20\",[21,55.785]],[\"parent/20\",[18,4.447]],[\"name/21\",[22,50.676]],[\"parent/21\",[]],[\"name/22\",[1,47.312]],[\"parent/22\",[22,5.031]],[\"name/23\",[2,44.799]],[\"parent/23\",[23,3.044]],[\"name/24\",[24,50.676]],[\"parent/24\",[23,3.044]],[\"name/25\",[25,50.676]],[\"parent/25\",[23,3.044]],[\"name/26\",[4,44.799]],[\"parent/26\",[23,3.044]],[\"name/27\",[5,44.799]],[\"parent/27\",[23,3.044]],[\"name/28\",[6,44.799]],[\"parent/28\",[23,3.044]],[\"name/29\",[7,44.799]],[\"parent/29\",[23,3.044]],[\"name/30\",[9,44.799]],[\"parent/30\",[23,3.044]],[\"name/31\",[26,47.312]],[\"parent/31\",[23,3.044]],[\"name/32\",[27,55.785]],[\"parent/32\",[23,3.044]],[\"name/33\",[10,44.799]],[\"parent/33\",[23,3.044]],[\"name/34\",[11,44.799]],[\"parent/34\",[23,3.044]],[\"name/35\",[12,44.799]],[\"parent/35\",[23,3.044]],[\"name/36\",[13,44.799]],[\"parent/36\",[23,3.044]],[\"name/37\",[14,44.799]],[\"parent/37\",[23,3.044]],[\"name/38\",[15,44.799]],[\"parent/38\",[23,3.044]],[\"name/39\",[16,44.799]],[\"parent/39\",[23,3.044]],[\"name/40\",[17,44.799]],[\"parent/40\",[23,3.044]],[\"name/41\",[28,25.995]],[\"parent/41\",[]],[\"name/42\",[29,50.676]],[\"parent/42\",[]],[\"name/43\",[30,50.676]],[\"parent/43\",[29,5.031]],[\"name/44\",[2,44.799]],[\"parent/44\",[31,2.895]],[\"name/45\",[32,55.785]],[\"parent/45\",[31,2.895]],[\"name/46\",[33,55.785]],[\"parent/46\",[31,2.895]],[\"name/47\",[34,55.785]],[\"parent/47\",[31,2.895]],[\"name/48\",[26,47.312]],[\"parent/48\",[31,2.895]],[\"name/49\",[35,55.785]],[\"parent/49\",[31,2.895]],[\"name/50\",[36,55.785]],[\"parent/50\",[31,2.895]],[\"name/51\",[4,44.799]],[\"parent/51\",[31,2.895]],[\"name/52\",[5,44.799]],[\"parent/52\",[31,2.895]],[\"name/53\",[6,44.799]],[\"parent/53\",[31,2.895]],[\"name/54\",[7,44.799]],[\"parent/54\",[31,2.895]],[\"name/55\",[8,47.312]],[\"parent/55\",[31,2.895]],[\"name/56\",[9,44.799]],[\"parent/56\",[31,2.895]],[\"name/57\",[10,44.799]],[\"parent/57\",[31,2.895]],[\"name/58\",[11,44.799]],[\"parent/58\",[31,2.895]],[\"name/59\",[12,44.799]],[\"parent/59\",[31,2.895]],[\"name/60\",[13,44.799]],[\"parent/60\",[31,2.895]],[\"name/61\",[14,44.799]],[\"parent/61\",[31,2.895]],[\"name/62\",[15,44.799]],[\"parent/62\",[31,2.895]],[\"name/63\",[16,44.799]],[\"parent/63\",[31,2.895]],[\"name/64\",[17,44.799]],[\"parent/64\",[31,2.895]],[\"name/65\",[37,50.676]],[\"parent/65\",[]],[\"name/66\",[38,50.676]],[\"parent/66\",[37,5.031]],[\"name/67\",[2,44.799]],[\"parent/67\",[39,3.044]],[\"name/68\",[24,50.676]],[\"parent/68\",[39,3.044]],[\"name/69\",[25,50.676]],[\"parent/69\",[39,3.044]],[\"name/70\",[26,47.312]],[\"parent/70\",[39,3.044]],[\"name/71\",[4,44.799]],[\"parent/71\",[39,3.044]],[\"name/72\",[5,44.799]],[\"parent/72\",[39,3.044]],[\"name/73\",[6,44.799]],[\"parent/73\",[39,3.044]],[\"name/74\",[7,44.799]],[\"parent/74\",[39,3.044]],[\"name/75\",[8,47.312]],[\"parent/75\",[39,3.044]],[\"name/76\",[9,44.799]],[\"parent/76\",[39,3.044]],[\"name/77\",[10,44.799]],[\"parent/77\",[39,3.044]],[\"name/78\",[11,44.799]],[\"parent/78\",[39,3.044]],[\"name/79\",[12,44.799]],[\"parent/79\",[39,3.044]],[\"name/80\",[13,44.799]],[\"parent/80\",[39,3.044]],[\"name/81\",[14,44.799]],[\"parent/81\",[39,3.044]],[\"name/82\",[15,44.799]],[\"parent/82\",[39,3.044]],[\"name/83\",[16,44.799]],[\"parent/83\",[39,3.044]],[\"name/84\",[17,44.799]],[\"parent/84\",[39,3.044]],[\"name/85\",[40,27.068]],[\"parent/85\",[]],[\"name/86\",[41,50.676]],[\"parent/86\",[40,2.687]],[\"name/87\",[42,33.812]],[\"parent/87\",[43,2.369]],[\"name/88\",[44,39.69]],[\"parent/88\",[43,2.369]],[\"name/89\",[45,42.792]],[\"parent/89\",[43,2.369]],[\"name/90\",[46,42.792]],[\"parent/90\",[43,2.369]],[\"name/91\",[47,50.676]],[\"parent/91\",[43,2.369]],[\"name/92\",[48,50.676]],[\"parent/92\",[43,2.369]],[\"name/93\",[49,50.676]],[\"parent/93\",[43,2.369]],[\"name/94\",[50,50.676]],[\"parent/94\",[43,2.369]],[\"name/95\",[51,50.676]],[\"parent/95\",[43,2.369]],[\"name/96\",[52,50.676]],[\"parent/96\",[43,2.369]],[\"name/97\",[53,50.676]],[\"parent/97\",[43,2.369]],[\"name/98\",[54,50.676]],[\"parent/98\",[43,2.369]],[\"name/99\",[55,50.676]],[\"parent/99\",[43,2.369]],[\"name/100\",[56,50.676]],[\"parent/100\",[43,2.369]],[\"name/101\",[57,50.676]],[\"parent/101\",[43,2.369]],[\"name/102\",[58,50.676]],[\"parent/102\",[43,2.369]],[\"name/103\",[59,50.676]],[\"parent/103\",[43,2.369]],[\"name/104\",[60,50.676]],[\"parent/104\",[43,2.369]],[\"name/105\",[61,50.676]],[\"parent/105\",[43,2.369]],[\"name/106\",[62,50.676]],[\"parent/106\",[43,2.369]],[\"name/107\",[63,50.676]],[\"parent/107\",[43,2.369]],[\"name/108\",[64,50.676]],[\"parent/108\",[43,2.369]],[\"name/109\",[65,50.676]],[\"parent/109\",[43,2.369]],[\"name/110\",[66,50.676]],[\"parent/110\",[43,2.369]],[\"name/111\",[67,50.676]],[\"parent/111\",[43,2.369]],[\"name/112\",[68,50.676]],[\"parent/112\",[43,2.369]],[\"name/113\",[69,50.676]],[\"parent/113\",[43,2.369]],[\"name/114\",[70,50.676]],[\"parent/114\",[43,2.369]],[\"name/115\",[71,50.676]],[\"parent/115\",[43,2.369]],[\"name/116\",[72,50.676]],[\"parent/116\",[43,2.369]],[\"name/117\",[73,50.676]],[\"parent/117\",[43,2.369]],[\"name/118\",[74,50.676]],[\"parent/118\",[43,2.369]],[\"name/119\",[75,50.676]],[\"parent/119\",[43,2.369]],[\"name/120\",[76,50.676]],[\"parent/120\",[43,2.369]],[\"name/121\",[77,50.676]],[\"parent/121\",[43,2.369]],[\"name/122\",[78,50.676]],[\"parent/122\",[43,2.369]],[\"name/123\",[79,50.676]],[\"parent/123\",[40,2.687]],[\"name/124\",[80,50.676]],[\"parent/124\",[81,5.031]],[\"name/125\",[82,50.676]],[\"parent/125\",[81,5.031]],[\"name/126\",[83,50.676]],[\"parent/126\",[40,2.687]],[\"name/127\",[84,55.785]],[\"parent/127\",[85,4.248]],[\"name/128\",[86,55.785]],[\"parent/128\",[85,4.248]],[\"name/129\",[44,39.69]],[\"parent/129\",[85,4.248]],[\"name/130\",[87,55.785]],[\"parent/130\",[85,4.248]],[\"name/131\",[88,55.785]],[\"parent/131\",[85,4.248]],[\"name/132\",[89,50.676]],[\"parent/132\",[40,2.687]],[\"name/133\",[90,55.785]],[\"parent/133\",[91,3.94]],[\"name/134\",[92,55.785]],[\"parent/134\",[91,3.94]],[\"name/135\",[93,55.785]],[\"parent/135\",[91,3.94]],[\"name/136\",[94,55.785]],[\"parent/136\",[91,3.94]],[\"name/137\",[95,55.785]],[\"parent/137\",[91,3.94]],[\"name/138\",[96,55.785]],[\"parent/138\",[91,3.94]],[\"name/139\",[97,55.785]],[\"parent/139\",[91,3.94]],[\"name/140\",[98,50.676]],[\"parent/140\",[40,2.687]],[\"name/141\",[80,50.676]],[\"parent/141\",[99,4.697]],[\"name/142\",[82,50.676]],[\"parent/142\",[99,4.697]],[\"name/143\",[100,55.785]],[\"parent/143\",[99,4.697]],[\"name/144\",[101,50.676]],[\"parent/144\",[40,2.687]],[\"name/145\",[42,33.812]],[\"parent/145\",[102,2.942]],[\"name/146\",[103,55.785]],[\"parent/146\",[102,2.942]],[\"name/147\",[104,50.676]],[\"parent/147\",[102,2.942]],[\"name/148\",[105,47.312]],[\"parent/148\",[102,2.942]],[\"name/149\",[106,50.676]],[\"parent/149\",[102,2.942]],[\"name/150\",[107,44.799]],[\"parent/150\",[102,2.942]],[\"name/151\",[108,55.785]],[\"parent/151\",[102,2.942]],[\"name/152\",[109,55.785]],[\"parent/152\",[102,2.942]],[\"name/153\",[110,35.416]],[\"parent/153\",[102,2.942]],[\"name/154\",[111,55.785]],[\"parent/154\",[112,5.031]],[\"name/155\",[113,55.785]],[\"parent/155\",[112,5.031]],[\"name/156\",[114,55.785]],[\"parent/156\",[102,2.942]],[\"name/157\",[115,50.676]],[\"parent/157\",[102,2.942]],[\"name/158\",[116,47.312]],[\"parent/158\",[102,2.942]],[\"name/159\",[117,50.676]],[\"parent/159\",[102,2.942]],[\"name/160\",[118,50.676]],[\"parent/160\",[102,2.942]],[\"name/161\",[119,55.785]],[\"parent/161\",[102,2.942]],[\"name/162\",[120,55.785]],[\"parent/162\",[102,2.942]],[\"name/163\",[121,55.785]],[\"parent/163\",[102,2.942]],[\"name/164\",[122,55.785]],[\"parent/164\",[102,2.942]],[\"name/165\",[123,55.785]],[\"parent/165\",[102,2.942]],[\"name/166\",[124,50.676]],[\"parent/166\",[102,2.942]],[\"name/167\",[125,50.676]],[\"parent/167\",[40,2.687]],[\"name/168\",[126,47.312]],[\"parent/168\",[40,2.687]],[\"name/169\",[127,50.676]],[\"parent/169\",[40,2.687]],[\"name/170\",[126,47.312]],[\"parent/170\",[128,4.697]],[\"name/171\",[129,55.785]],[\"parent/171\",[128,4.697]],[\"name/172\",[130,55.785]],[\"parent/172\",[128,4.697]],[\"name/173\",[131,50.676]],[\"parent/173\",[40,2.687]],[\"name/174\",[42,33.812]],[\"parent/174\",[132,4.447]],[\"name/175\",[133,55.785]],[\"parent/175\",[132,4.447]],[\"name/176\",[134,55.785]],[\"parent/176\",[132,4.447]],[\"name/177\",[135,55.785]],[\"parent/177\",[132,4.447]],[\"name/178\",[136,50.676]],[\"parent/178\",[40,2.687]],[\"name/179\",[137,44.799]],[\"parent/179\",[138,3.044]],[\"name/180\",[139,50.676]],[\"parent/180\",[138,3.044]],[\"name/181\",[140,47.312]],[\"parent/181\",[138,3.044]],[\"name/182\",[141,55.785]],[\"parent/182\",[138,3.044]],[\"name/183\",[42,33.812]],[\"parent/183\",[138,3.044]],[\"name/184\",[142,44.799]],[\"parent/184\",[138,3.044]],[\"name/185\",[143,55.785]],[\"parent/185\",[138,3.044]],[\"name/186\",[144,50.676]],[\"parent/186\",[138,3.044]],[\"name/187\",[145,55.785]],[\"parent/187\",[138,3.044]],[\"name/188\",[146,55.785]],[\"parent/188\",[138,3.044]],[\"name/189\",[147,55.785]],[\"parent/189\",[138,3.044]],[\"name/190\",[148,55.785]],[\"parent/190\",[138,3.044]],[\"name/191\",[149,55.785]],[\"parent/191\",[138,3.044]],[\"name/192\",[150,55.785]],[\"parent/192\",[138,3.044]],[\"name/193\",[151,55.785]],[\"parent/193\",[138,3.044]],[\"name/194\",[110,35.416]],[\"parent/194\",[138,3.044]],[\"name/195\",[42,33.812]],[\"parent/195\",[152,3.606]],[\"name/196\",[153,50.676]],[\"parent/196\",[152,3.606]],[\"name/197\",[154,55.785]],[\"parent/197\",[152,3.606]],[\"name/198\",[155,55.785]],[\"parent/198\",[152,3.606]],[\"name/199\",[156,55.785]],[\"parent/199\",[152,3.606]],[\"name/200\",[157,55.785]],[\"parent/200\",[152,3.606]],[\"name/201\",[158,55.785]],[\"parent/201\",[152,3.606]],[\"name/202\",[159,55.785]],[\"parent/202\",[152,3.606]],[\"name/203\",[160,50.676]],[\"parent/203\",[152,3.606]],[\"name/204\",[161,55.785]],[\"parent/204\",[152,3.606]],[\"name/205\",[162,55.785]],[\"parent/205\",[138,3.044]],[\"name/206\",[163,55.785]],[\"parent/206\",[138,3.044]],[\"name/207\",[164,50.676]],[\"parent/207\",[40,2.687]],[\"name/208\",[165,50.676]],[\"parent/208\",[40,2.687]],[\"name/209\",[166,47.312]],[\"parent/209\",[167,5.538]],[\"name/210\",[137,44.799]],[\"parent/210\",[40,2.687]],[\"name/211\",[116,47.312]],[\"parent/211\",[168,3.157]],[\"name/212\",[115,50.676]],[\"parent/212\",[168,3.157]],[\"name/213\",[169,55.785]],[\"parent/213\",[168,3.157]],[\"name/214\",[170,55.785]],[\"parent/214\",[168,3.157]],[\"name/215\",[171,55.785]],[\"parent/215\",[168,3.157]],[\"name/216\",[172,55.785]],[\"parent/216\",[168,3.157]],[\"name/217\",[117,50.676]],[\"parent/217\",[168,3.157]],[\"name/218\",[166,47.312]],[\"parent/218\",[168,3.157]],[\"name/219\",[173,55.785]],[\"parent/219\",[168,3.157]],[\"name/220\",[174,55.785]],[\"parent/220\",[168,3.157]],[\"name/221\",[175,55.785]],[\"parent/221\",[168,3.157]],[\"name/222\",[176,55.785]],[\"parent/222\",[168,3.157]],[\"name/223\",[118,50.676]],[\"parent/223\",[168,3.157]],[\"name/224\",[177,55.785]],[\"parent/224\",[168,3.157]],[\"name/225\",[178,55.785]],[\"parent/225\",[168,3.157]],[\"name/226\",[179,55.785]],[\"parent/226\",[168,3.157]],[\"name/227\",[180,50.676]],[\"parent/227\",[40,2.687]],[\"name/228\",[181,50.676]],[\"parent/228\",[40,2.687]],[\"name/229\",[105,47.312]],[\"parent/229\",[182,3.94]],[\"name/230\",[106,50.676]],[\"parent/230\",[182,3.94]],[\"name/231\",[183,50.676]],[\"parent/231\",[182,3.94]],[\"name/232\",[104,50.676]],[\"parent/232\",[182,3.94]],[\"name/233\",[107,44.799]],[\"parent/233\",[182,3.94]],[\"name/234\",[140,47.312]],[\"parent/234\",[182,3.94]],[\"name/235\",[110,35.416]],[\"parent/235\",[182,3.94]],[\"name/236\",[142,44.799]],[\"parent/236\",[184,4.697]],[\"name/237\",[45,42.792]],[\"parent/237\",[184,4.697]],[\"name/238\",[46,42.792]],[\"parent/238\",[184,4.697]],[\"name/239\",[185,50.676]],[\"parent/239\",[40,2.687]],[\"name/240\",[107,44.799]],[\"parent/240\",[186,4.447]],[\"name/241\",[187,50.676]],[\"parent/241\",[186,4.447]],[\"name/242\",[188,55.785]],[\"parent/242\",[186,4.447]],[\"name/243\",[110,35.416]],[\"parent/243\",[186,4.447]],[\"name/244\",[189,55.785]],[\"parent/244\",[190,5.538]],[\"name/245\",[191,50.676]],[\"parent/245\",[40,2.687]],[\"name/246\",[42,33.812]],[\"parent/246\",[192,3.94]],[\"name/247\",[44,39.69]],[\"parent/247\",[192,3.94]],[\"name/248\",[183,50.676]],[\"parent/248\",[192,3.94]],[\"name/249\",[193,55.785]],[\"parent/249\",[192,3.94]],[\"name/250\",[194,55.785]],[\"parent/250\",[192,3.94]],[\"name/251\",[195,55.785]],[\"parent/251\",[192,3.94]],[\"name/252\",[196,55.785]],[\"parent/252\",[192,3.94]],[\"name/253\",[197,50.676]],[\"parent/253\",[40,2.687]],[\"name/254\",[198,50.676]],[\"parent/254\",[40,2.687]],[\"name/255\",[42,33.812]],[\"parent/255\",[199,3.099]],[\"name/256\",[200,55.785]],[\"parent/256\",[199,3.099]],[\"name/257\",[166,47.312]],[\"parent/257\",[199,3.099]],[\"name/258\",[201,55.785]],[\"parent/258\",[199,3.099]],[\"name/259\",[202,55.785]],[\"parent/259\",[199,3.099]],[\"name/260\",[203,55.785]],[\"parent/260\",[199,3.099]],[\"name/261\",[204,55.785]],[\"parent/261\",[199,3.099]],[\"name/262\",[205,47.312]],[\"parent/262\",[199,3.099]],[\"name/263\",[110,35.416]],[\"parent/263\",[199,3.099]],[\"name/264\",[42,33.812]],[\"parent/264\",[206,3.219]],[\"name/265\",[45,42.792]],[\"parent/265\",[206,3.219]],[\"name/266\",[46,42.792]],[\"parent/266\",[206,3.219]],[\"name/267\",[207,55.785]],[\"parent/267\",[206,3.219]],[\"name/268\",[110,35.416]],[\"parent/268\",[206,3.219]],[\"name/269\",[208,55.785]],[\"parent/269\",[209,4.248]],[\"name/270\",[210,55.785]],[\"parent/270\",[209,4.248]],[\"name/271\",[211,55.785]],[\"parent/271\",[209,4.248]],[\"name/272\",[137,44.799]],[\"parent/272\",[199,3.099]],[\"name/273\",[110,35.416]],[\"parent/273\",[199,3.099]],[\"name/274\",[42,33.812]],[\"parent/274\",[206,3.219]],[\"name/275\",[44,39.69]],[\"parent/275\",[206,3.219]],[\"name/276\",[139,50.676]],[\"parent/276\",[206,3.219]],[\"name/277\",[110,35.416]],[\"parent/277\",[206,3.219]],[\"name/278\",[42,33.812]],[\"parent/278\",[209,4.248]],[\"name/279\",[44,39.69]],[\"parent/279\",[209,4.248]],[\"name/280\",[187,50.676]],[\"parent/280\",[199,3.099]],[\"name/281\",[110,35.416]],[\"parent/281\",[199,3.099]],[\"name/282\",[105,47.312]],[\"parent/282\",[206,3.219]],[\"name/283\",[140,47.312]],[\"parent/283\",[199,3.099]],[\"name/284\",[110,35.416]],[\"parent/284\",[199,3.099]],[\"name/285\",[42,33.812]],[\"parent/285\",[206,3.219]],[\"name/286\",[45,42.792]],[\"parent/286\",[206,3.219]],[\"name/287\",[46,42.792]],[\"parent/287\",[206,3.219]],[\"name/288\",[142,44.799]],[\"parent/288\",[206,3.219]],[\"name/289\",[124,50.676]],[\"parent/289\",[199,3.099]],[\"name/290\",[110,35.416]],[\"parent/290\",[199,3.099]],[\"name/291\",[44,39.69]],[\"parent/291\",[206,3.219]],[\"name/292\",[212,50.676]],[\"parent/292\",[40,2.687]],[\"name/293\",[213,50.676]],[\"parent/293\",[40,2.687]],[\"name/294\",[42,33.812]],[\"parent/294\",[214,2.942]],[\"name/295\",[142,44.799]],[\"parent/295\",[214,2.942]],[\"name/296\",[144,50.676]],[\"parent/296\",[214,2.942]],[\"name/297\",[215,50.676]],[\"parent/297\",[214,2.942]],[\"name/298\",[116,47.312]],[\"parent/298\",[214,2.942]],[\"name/299\",[216,50.676]],[\"parent/299\",[214,2.942]],[\"name/300\",[217,55.785]],[\"parent/300\",[214,2.942]],[\"name/301\",[153,50.676]],[\"parent/301\",[214,2.942]],[\"name/302\",[107,44.799]],[\"parent/302\",[214,2.942]],[\"name/303\",[160,50.676]],[\"parent/303\",[214,2.942]],[\"name/304\",[218,55.785]],[\"parent/304\",[214,2.942]],[\"name/305\",[219,55.785]],[\"parent/305\",[214,2.942]],[\"name/306\",[220,55.785]],[\"parent/306\",[214,2.942]],[\"name/307\",[221,55.785]],[\"parent/307\",[214,2.942]],[\"name/308\",[222,55.785]],[\"parent/308\",[214,2.942]],[\"name/309\",[223,55.785]],[\"parent/309\",[214,2.942]],[\"name/310\",[224,55.785]],[\"parent/310\",[214,2.942]],[\"name/311\",[225,55.785]],[\"parent/311\",[214,2.942]],[\"name/312\",[226,55.785]],[\"parent/312\",[214,2.942]],[\"name/313\",[227,55.785]],[\"parent/313\",[214,2.942]],[\"name/314\",[228,50.676]],[\"parent/314\",[40,2.687]],[\"name/315\",[205,47.312]],[\"parent/315\",[40,2.687]],[\"name/316\",[215,50.676]],[\"parent/316\",[229,2.027]],[\"name/317\",[216,50.676]],[\"parent/317\",[229,2.027]],[\"name/318\",[230,55.785]],[\"parent/318\",[229,2.027]],[\"name/319\",[231,55.785]],[\"parent/319\",[229,2.027]],[\"name/320\",[232,55.785]],[\"parent/320\",[229,2.027]],[\"name/321\",[233,55.785]],[\"parent/321\",[229,2.027]],[\"name/322\",[234,55.785]],[\"parent/322\",[229,2.027]],[\"name/323\",[235,55.785]],[\"parent/323\",[229,2.027]],[\"name/324\",[236,55.785]],[\"parent/324\",[229,2.027]],[\"name/325\",[237,55.785]],[\"parent/325\",[229,2.027]],[\"name/326\",[238,55.785]],[\"parent/326\",[229,2.027]],[\"name/327\",[239,55.785]],[\"parent/327\",[229,2.027]],[\"name/328\",[240,55.785]],[\"parent/328\",[229,2.027]],[\"name/329\",[241,55.785]],[\"parent/329\",[229,2.027]],[\"name/330\",[242,55.785]],[\"parent/330\",[229,2.027]],[\"name/331\",[72,50.676]],[\"parent/331\",[229,2.027]],[\"name/332\",[73,50.676]],[\"parent/332\",[229,2.027]],[\"name/333\",[42,33.812]],[\"parent/333\",[229,2.027]],[\"name/334\",[44,39.69]],[\"parent/334\",[229,2.027]],[\"name/335\",[45,42.792]],[\"parent/335\",[229,2.027]],[\"name/336\",[46,42.792]],[\"parent/336\",[229,2.027]],[\"name/337\",[47,50.676]],[\"parent/337\",[229,2.027]],[\"name/338\",[48,50.676]],[\"parent/338\",[229,2.027]],[\"name/339\",[49,50.676]],[\"parent/339\",[229,2.027]],[\"name/340\",[50,50.676]],[\"parent/340\",[229,2.027]],[\"name/341\",[51,50.676]],[\"parent/341\",[229,2.027]],[\"name/342\",[52,50.676]],[\"parent/342\",[229,2.027]],[\"name/343\",[53,50.676]],[\"parent/343\",[229,2.027]],[\"name/344\",[54,50.676]],[\"parent/344\",[229,2.027]],[\"name/345\",[55,50.676]],[\"parent/345\",[229,2.027]],[\"name/346\",[56,50.676]],[\"parent/346\",[229,2.027]],[\"name/347\",[57,50.676]],[\"parent/347\",[229,2.027]],[\"name/348\",[58,50.676]],[\"parent/348\",[229,2.027]],[\"name/349\",[59,50.676]],[\"parent/349\",[229,2.027]],[\"name/350\",[60,50.676]],[\"parent/350\",[229,2.027]],[\"name/351\",[61,50.676]],[\"parent/351\",[229,2.027]],[\"name/352\",[62,50.676]],[\"parent/352\",[229,2.027]],[\"name/353\",[63,50.676]],[\"parent/353\",[229,2.027]],[\"name/354\",[64,50.676]],[\"parent/354\",[229,2.027]],[\"name/355\",[65,50.676]],[\"parent/355\",[229,2.027]],[\"name/356\",[66,50.676]],[\"parent/356\",[229,2.027]],[\"name/357\",[67,50.676]],[\"parent/357\",[229,2.027]],[\"name/358\",[68,50.676]],[\"parent/358\",[229,2.027]],[\"name/359\",[69,50.676]],[\"parent/359\",[229,2.027]],[\"name/360\",[70,50.676]],[\"parent/360\",[229,2.027]],[\"name/361\",[71,50.676]],[\"parent/361\",[229,2.027]],[\"name/362\",[74,50.676]],[\"parent/362\",[229,2.027]],[\"name/363\",[75,50.676]],[\"parent/363\",[229,2.027]],[\"name/364\",[76,50.676]],[\"parent/364\",[229,2.027]],[\"name/365\",[77,50.676]],[\"parent/365\",[229,2.027]],[\"name/366\",[78,50.676]],[\"parent/366\",[229,2.027]],[\"name/367\",[243,50.676]],[\"parent/367\",[40,2.687]],[\"name/368\",[30,50.676]],[\"parent/368\",[28,2.581]],[\"name/369\",[38,50.676]],[\"parent/369\",[28,2.581]],[\"name/370\",[41,50.676]],[\"parent/370\",[28,2.581]],[\"name/371\",[79,50.676]],[\"parent/371\",[28,2.581]],[\"name/372\",[83,50.676]],[\"parent/372\",[28,2.581]],[\"name/373\",[89,50.676]],[\"parent/373\",[28,2.581]],[\"name/374\",[98,50.676]],[\"parent/374\",[28,2.581]],[\"name/375\",[101,50.676]],[\"parent/375\",[28,2.581]],[\"name/376\",[125,50.676]],[\"parent/376\",[28,2.581]],[\"name/377\",[126,47.312]],[\"parent/377\",[28,2.581]],[\"name/378\",[127,50.676]],[\"parent/378\",[28,2.581]],[\"name/379\",[131,50.676]],[\"parent/379\",[28,2.581]],[\"name/380\",[136,50.676]],[\"parent/380\",[28,2.581]],[\"name/381\",[164,50.676]],[\"parent/381\",[28,2.581]],[\"name/382\",[165,50.676]],[\"parent/382\",[28,2.581]],[\"name/383\",[137,44.799]],[\"parent/383\",[28,2.581]],[\"name/384\",[180,50.676]],[\"parent/384\",[28,2.581]],[\"name/385\",[181,50.676]],[\"parent/385\",[28,2.581]],[\"name/386\",[185,50.676]],[\"parent/386\",[28,2.581]],[\"name/387\",[191,50.676]],[\"parent/387\",[28,2.581]],[\"name/388\",[197,50.676]],[\"parent/388\",[28,2.581]],[\"name/389\",[198,50.676]],[\"parent/389\",[28,2.581]],[\"name/390\",[212,50.676]],[\"parent/390\",[28,2.581]],[\"name/391\",[213,50.676]],[\"parent/391\",[28,2.581]],[\"name/392\",[228,50.676]],[\"parent/392\",[28,2.581]],[\"name/393\",[205,47.312]],[\"parent/393\",[28,2.581]],[\"name/394\",[243,50.676]],[\"parent/394\",[28,2.581]],[\"name/395\",[1,47.312]],[\"parent/395\",[28,2.581]]],\"invertedIndex\":[[\"__type\",{\"_index\":110,\"name\":{\"153\":{},\"194\":{},\"235\":{},\"243\":{},\"263\":{},\"268\":{},\"273\":{},\"277\":{},\"281\":{},\"284\":{},\"290\":{}},\"parent\":{}}],[\"_can_delete\",{\"_index\":119,\"name\":{\"161\":{}},\"parent\":{}}],[\"activitypoint\",{\"_index\":101,\"name\":{\"144\":{},\"375\":{}},\"parent\":{}}],[\"activityresponse\",{\"_index\":125,\"name\":{\"167\":{},\"376\":{}},\"parent\":{}}],[\"allow_attachments\",{\"_index\":157,\"name\":{\"200\":{}},\"parent\":{}}],[\"allow_comments\",{\"_index\":220,\"name\":{\"306\":{}},\"parent\":{}}],[\"allow_consent\",{\"_index\":222,\"name\":{\"308\":{}},\"parent\":{}}],[\"allow_pupils_add_timetable_notes\",{\"_index\":71,\"name\":{\"115\":{},\"361\":{}},\"parent\":{}}],[\"allow_reactions\",{\"_index\":221,\"name\":{\"307\":{}},\"parent\":{}}],[\"announcement\",{\"_index\":213,\"name\":{\"293\":{},\"391\":{}},\"parent\":{}}],[\"announcements_count\",{\"_index\":72,\"name\":{\"116\":{},\"331\":{}},\"parent\":{}}],[\"announcementsresponse\",{\"_index\":228,\"name\":{\"314\":{},\"392\":{}},\"parent\":{}}],[\"api_base\",{\"_index\":8,\"name\":{\"7\":{},\"55\":{},\"75\":{}},\"parent\":{}}],[\"api_base_parent\",{\"_index\":21,\"name\":{\"20\":{}},\"parent\":{}}],[\"api_base_student\",{\"_index\":20,\"name\":{\"19\":{}},\"parent\":{}}],[\"attachments\",{\"_index\":160,\"name\":{\"203\":{},\"303\":{}},\"parent\":{}}],[\"attended\",{\"_index\":200,\"name\":{\"256\":{}},\"parent\":{}}],[\"authcookies\",{\"_index\":6,\"name\":{\"5\":{},\"28\":{},\"53\":{},\"73\":{}},\"parent\":{}}],[\"avatar_url\",{\"_index\":47,\"name\":{\"91\":{},\"337\":{}},\"parent\":{}}],[\"badge\",{\"_index\":191,\"name\":{\"245\":{},\"387\":{}},\"parent\":{}}],[\"badges\",{\"_index\":120,\"name\":{\"162\":{}},\"parent\":{}}],[\"badgesresponse\",{\"_index\":197,\"name\":{\"253\":{},\"388\":{}},\"parent\":{}}],[\"base_url\",{\"_index\":19,\"name\":{\"18\":{}},\"parent\":{}}],[\"baseclient\",{\"_index\":0,\"name\":{\"0\":{}},\"parent\":{\"1\":{}}}],[\"baseclient.classchartsclient\",{\"_index\":3,\"name\":{},\"parent\":{\"2\":{},\"3\":{},\"4\":{},\"5\":{},\"6\":{},\"7\":{},\"8\":{},\"9\":{},\"10\":{},\"11\":{},\"12\":{},\"13\":{},\"14\":{},\"15\":{},\"16\":{}}}],[\"behaviourresponse\",{\"_index\":89,\"name\":{\"132\":{},\"373\":{}},\"parent\":{}}],[\"behaviourtimelinepoint\",{\"_index\":83,\"name\":{\"126\":{},\"372\":{}},\"parent\":{}}],[\"border_color\",{\"_index\":111,\"name\":{\"154\":{}},\"parent\":{}}],[\"can_change_consent\",{\"_index\":225,\"name\":{\"311\":{}},\"parent\":{}}],[\"can_record_covid_tests\",{\"_index\":232,\"name\":{\"320\":{}},\"parent\":{}}],[\"can_upload_attachments\",{\"_index\":65,\"name\":{\"109\":{},\"355\":{}},\"parent\":{}}],[\"classchartsclient\",{\"_index\":1,\"name\":{\"1\":{},\"22\":{},\"395\":{}},\"parent\":{}}],[\"classchartsparentclient\",{\"_index\":30,\"name\":{\"43\":{},\"368\":{}},\"parent\":{}}],[\"classchartsstudentclient\",{\"_index\":38,\"name\":{\"66\":{},\"369\":{}},\"parent\":{}}],[\"colour\",{\"_index\":193,\"name\":{\"249\":{}},\"parent\":{}}],[\"comment_visibility\",{\"_index\":219,\"name\":{\"305\":{}},\"parent\":{}}],[\"completion_time_unit\",{\"_index\":148,\"name\":{\"190\":{}},\"parent\":{}}],[\"completion_time_value\",{\"_index\":149,\"name\":{\"191\":{}},\"parent\":{}}],[\"consent\",{\"_index\":226,\"name\":{\"312\":{}},\"parent\":{}}],[\"constructor\",{\"_index\":2,\"name\":{\"2\":{},\"23\":{},\"44\":{},\"67\":{}},\"parent\":{}}],[\"consts\",{\"_index\":18,\"name\":{\"17\":{}},\"parent\":{\"18\":{},\"19\":{},\"20\":{}}}],[\"created_date\",{\"_index\":194,\"name\":{\"250\":{}},\"parent\":{}}],[\"custom_class\",{\"_index\":113,\"name\":{\"155\":{}},\"parent\":{}}],[\"date\",{\"_index\":166,\"name\":{\"209\":{},\"218\":{},\"257\":{}},\"parent\":{}}],[\"dateofbirth\",{\"_index\":25,\"name\":{\"25\":{},\"69\":{}},\"parent\":{}}],[\"description\",{\"_index\":144,\"name\":{\"186\":{},\"296\":{}},\"parent\":{}}],[\"description_raw\",{\"_index\":145,\"name\":{\"187\":{}},\"parent\":{}}],[\"detention\",{\"_index\":198,\"name\":{\"254\":{},\"389\":{}},\"parent\":{}}],[\"detention_alias_plural_uc\",{\"_index\":78,\"name\":{\"122\":{},\"366\":{}},\"parent\":{}}],[\"detention_date\",{\"_index\":121,\"name\":{\"163\":{}},\"parent\":{}}],[\"detention_location\",{\"_index\":123,\"name\":{\"165\":{}},\"parent\":{}}],[\"detention_no_count\",{\"_index\":234,\"name\":{\"322\":{}},\"parent\":{}}],[\"detention_pending_count\",{\"_index\":235,\"name\":{\"323\":{}},\"parent\":{}}],[\"detention_time\",{\"_index\":122,\"name\":{\"164\":{}},\"parent\":{}}],[\"detention_type\",{\"_index\":124,\"name\":{\"166\":{},\"289\":{}},\"parent\":{}}],[\"detention_upscaled_count\",{\"_index\":236,\"name\":{\"324\":{}},\"parent\":{}}],[\"detention_yes_count\",{\"_index\":233,\"name\":{\"321\":{}},\"parent\":{}}],[\"detentionsresponse\",{\"_index\":212,\"name\":{\"292\":{},\"390\":{}},\"parent\":{}}],[\"display_absences\",{\"_index\":64,\"name\":{\"108\":{},\"354\":{}},\"parent\":{}}],[\"display_activity\",{\"_index\":59,\"name\":{\"103\":{},\"349\":{}},\"parent\":{}}],[\"display_announcements\",{\"_index\":55,\"name\":{\"99\":{},\"345\":{}},\"parent\":{}}],[\"display_attendance\",{\"_index\":56,\"name\":{\"100\":{},\"346\":{}},\"parent\":{}}],[\"display_attendance_percentage\",{\"_index\":58,\"name\":{\"102\":{},\"348\":{}},\"parent\":{}}],[\"display_attendance_type\",{\"_index\":57,\"name\":{\"101\":{},\"347\":{}},\"parent\":{}}],[\"display_avatars\",{\"_index\":67,\"name\":{\"111\":{},\"357\":{}},\"parent\":{}}],[\"display_behaviour\",{\"_index\":48,\"name\":{\"92\":{},\"338\":{}},\"parent\":{}}],[\"display_classes\",{\"_index\":54,\"name\":{\"98\":{},\"344\":{}},\"parent\":{}}],[\"display_concern_submission\",{\"_index\":68,\"name\":{\"112\":{},\"358\":{}},\"parent\":{}}],[\"display_covid_tests\",{\"_index\":231,\"name\":{\"319\":{}},\"parent\":{}}],[\"display_custom_fields\",{\"_index\":69,\"name\":{\"113\":{},\"359\":{}},\"parent\":{}}],[\"display_detentions\",{\"_index\":52,\"name\":{\"96\":{},\"342\":{}},\"parent\":{}}],[\"display_event_badges\",{\"_index\":66,\"name\":{\"110\":{},\"356\":{}},\"parent\":{}}],[\"display_homework\",{\"_index\":50,\"name\":{\"94\":{},\"340\":{}},\"parent\":{}}],[\"display_mental_health\",{\"_index\":60,\"name\":{\"104\":{},\"350\":{}},\"parent\":{}}],[\"display_parent_behaviour\",{\"_index\":49,\"name\":{\"93\":{},\"339\":{}},\"parent\":{}}],[\"display_report_cards\",{\"_index\":53,\"name\":{\"97\":{},\"343\":{}},\"parent\":{}}],[\"display_rewards\",{\"_index\":51,\"name\":{\"95\":{},\"341\":{}},\"parent\":{}}],[\"display_timetable\",{\"_index\":61,\"name\":{\"105\":{},\"351\":{}},\"parent\":{}}],[\"display_two_way_communications\",{\"_index\":63,\"name\":{\"107\":{},\"353\":{}},\"parent\":{}}],[\"displaydate\",{\"_index\":126,\"name\":{\"168\":{},\"170\":{},\"377\":{}},\"parent\":{}}],[\"due_date\",{\"_index\":147,\"name\":{\"189\":{}},\"parent\":{}}],[\"dummyclient\",{\"_index\":22,\"name\":{\"21\":{}},\"parent\":{\"22\":{}}}],[\"dummyclient.classchartsclient\",{\"_index\":23,\"name\":{},\"parent\":{\"23\":{},\"24\":{},\"25\":{},\"26\":{},\"27\":{},\"28\":{},\"29\":{},\"30\":{},\"31\":{},\"32\":{},\"33\":{},\"34\":{},\"35\":{},\"36\":{},\"37\":{},\"38\":{},\"39\":{},\"40\":{}}}],[\"email\",{\"_index\":33,\"name\":{\"46\":{}},\"parent\":{}}],[\"end\",{\"_index\":88,\"name\":{\"131\":{}},\"parent\":{}}],[\"end_time\",{\"_index\":174,\"name\":{\"220\":{}},\"parent\":{}}],[\"event\",{\"_index\":188,\"name\":{\"242\":{}},\"parent\":{}}],[\"file\",{\"_index\":134,\"name\":{\"176\":{}},\"parent\":{}}],[\"file_name\",{\"_index\":133,\"name\":{\"175\":{}},\"parent\":{}}],[\"first_name\",{\"_index\":45,\"name\":{\"89\":{},\"237\":{},\"265\":{},\"286\":{},\"335\":{}},\"parent\":{}}],[\"first_seen_date\",{\"_index\":158,\"name\":{\"201\":{}},\"parent\":{}}],[\"for_pupils\",{\"_index\":218,\"name\":{\"304\":{}},\"parent\":{}}],[\"from\",{\"_index\":80,\"name\":{\"124\":{},\"141\":{}},\"parent\":{}}],[\"fromdate\",{\"_index\":129,\"name\":{\"171\":{}},\"parent\":{}}],[\"getactivity\",{\"_index\":11,\"name\":{\"10\":{},\"34\":{},\"58\":{},\"78\":{}},\"parent\":{}}],[\"getactivityoptions\",{\"_index\":98,\"name\":{\"140\":{},\"374\":{}},\"parent\":{}}],[\"getbadges\",{\"_index\":15,\"name\":{\"14\":{},\"38\":{},\"62\":{},\"82\":{}},\"parent\":{}}],[\"getbehaviour\",{\"_index\":12,\"name\":{\"11\":{},\"35\":{},\"59\":{},\"79\":{}},\"parent\":{}}],[\"getbehaviouroptions\",{\"_index\":79,\"name\":{\"123\":{},\"371\":{}},\"parent\":{}}],[\"getdetentions\",{\"_index\":17,\"name\":{\"16\":{},\"40\":{},\"64\":{},\"84\":{}},\"parent\":{}}],[\"gethomeworkoptions\",{\"_index\":127,\"name\":{\"169\":{},\"378\":{}},\"parent\":{}}],[\"getlessons\",{\"_index\":14,\"name\":{\"13\":{},\"37\":{},\"61\":{},\"81\":{}},\"parent\":{}}],[\"getlessonsoptions\",{\"_index\":165,\"name\":{\"208\":{},\"382\":{}},\"parent\":{}}],[\"getpupils\",{\"_index\":35,\"name\":{\"49\":{}},\"parent\":{}}],[\"getpupilsresponse\",{\"_index\":243,\"name\":{\"367\":{},\"394\":{}},\"parent\":{}}],[\"getstudentinfo\",{\"_index\":10,\"name\":{\"9\":{},\"33\":{},\"57\":{},\"77\":{}},\"parent\":{}}],[\"has_birthday\",{\"_index\":75,\"name\":{\"119\":{},\"363\":{}},\"parent\":{}}],[\"has_feedback\",{\"_index\":161,\"name\":{\"204\":{}},\"parent\":{}}],[\"has_new_survey\",{\"_index\":76,\"name\":{\"120\":{},\"364\":{}},\"parent\":{}}],[\"homework\",{\"_index\":136,\"name\":{\"178\":{},\"380\":{}},\"parent\":{}}],[\"homework_completed_count\",{\"_index\":241,\"name\":{\"329\":{}},\"parent\":{}}],[\"homework_excused_count\",{\"_index\":240,\"name\":{\"328\":{}},\"parent\":{}}],[\"homework_late_count\",{\"_index\":238,\"name\":{\"326\":{}},\"parent\":{}}],[\"homework_not_completed_count\",{\"_index\":239,\"name\":{\"327\":{}},\"parent\":{}}],[\"homework_submitted_count\",{\"_index\":242,\"name\":{\"330\":{}},\"parent\":{}}],[\"homework_todo_count\",{\"_index\":237,\"name\":{\"325\":{}},\"parent\":{}}],[\"homework_type\",{\"_index\":141,\"name\":{\"182\":{}},\"parent\":{}}],[\"homeworksresponse\",{\"_index\":164,\"name\":{\"207\":{},\"381\":{}},\"parent\":{}}],[\"icon\",{\"_index\":183,\"name\":{\"231\":{},\"248\":{}},\"parent\":{}}],[\"icon_url\",{\"_index\":196,\"name\":{\"252\":{}},\"parent\":{}}],[\"id\",{\"_index\":42,\"name\":{\"87\":{},\"145\":{},\"174\":{},\"183\":{},\"195\":{},\"246\":{},\"255\":{},\"264\":{},\"274\":{},\"278\":{},\"285\":{},\"294\":{},\"333\":{}},\"parent\":{}}],[\"index\",{\"_index\":28,\"name\":{\"41\":{}},\"parent\":{\"368\":{},\"369\":{},\"370\":{},\"371\":{},\"372\":{},\"373\":{},\"374\":{},\"375\":{},\"376\":{},\"377\":{},\"378\":{},\"379\":{},\"380\":{},\"381\":{},\"382\":{},\"383\":{},\"384\":{},\"385\":{},\"386\":{},\"387\":{},\"388\":{},\"389\":{},\"390\":{},\"391\":{},\"392\":{},\"393\":{},\"394\":{},\"395\":{}}}],[\"init\",{\"_index\":27,\"name\":{\"32\":{}},\"parent\":{}}],[\"is_alternative_lesson\",{\"_index\":170,\"name\":{\"214\":{}},\"parent\":{}}],[\"is_disabled\",{\"_index\":62,\"name\":{\"106\":{},\"352\":{}},\"parent\":{}}],[\"issue_date\",{\"_index\":146,\"name\":{\"188\":{}},\"parent\":{}}],[\"key\",{\"_index\":175,\"name\":{\"221\":{}},\"parent\":{}}],[\"label\",{\"_index\":189,\"name\":{\"244\":{}},\"parent\":{}}],[\"last_id\",{\"_index\":100,\"name\":{\"143\":{}},\"parent\":{}}],[\"last_name\",{\"_index\":46,\"name\":{\"90\":{},\"238\":{},\"266\":{},\"287\":{},\"336\":{}},\"parent\":{}}],[\"last_seen_date\",{\"_index\":159,\"name\":{\"202\":{}},\"parent\":{}}],[\"length\",{\"_index\":201,\"name\":{\"258\":{}},\"parent\":{}}],[\"lesson\",{\"_index\":137,\"name\":{\"179\":{},\"210\":{},\"272\":{},\"383\":{}},\"parent\":{}}],[\"lesson_name\",{\"_index\":115,\"name\":{\"157\":{},\"212\":{}},\"parent\":{}}],[\"lesson_pupil_behaviour\",{\"_index\":187,\"name\":{\"241\":{},\"280\":{}},\"parent\":{}}],[\"lessonpupilbehaviour\",{\"_index\":181,\"name\":{\"228\":{},\"385\":{}},\"parent\":{}}],[\"lessonsresponse\",{\"_index\":180,\"name\":{\"227\":{},\"384\":{}},\"parent\":{}}],[\"listannouncements\",{\"_index\":16,\"name\":{\"15\":{},\"39\":{},\"63\":{},\"83\":{}},\"parent\":{}}],[\"listhomeworks\",{\"_index\":13,\"name\":{\"12\":{},\"36\":{},\"60\":{},\"80\":{}},\"parent\":{}}],[\"location\",{\"_index\":202,\"name\":{\"259\":{}},\"parent\":{}}],[\"login\",{\"_index\":26,\"name\":{\"31\":{},\"48\":{},\"70\":{}},\"parent\":{}}],[\"makeauthedrequest\",{\"_index\":9,\"name\":{\"8\":{},\"30\":{},\"56\":{},\"76\":{}},\"parent\":{}}],[\"mark\",{\"_index\":154,\"name\":{\"197\":{}},\"parent\":{}}],[\"mark_relative\",{\"_index\":155,\"name\":{\"198\":{}},\"parent\":{}}],[\"messages_count\",{\"_index\":73,\"name\":{\"117\":{},\"332\":{}},\"parent\":{}}],[\"meta_title\",{\"_index\":143,\"name\":{\"185\":{}},\"parent\":{}}],[\"name\",{\"_index\":44,\"name\":{\"88\":{},\"129\":{},\"247\":{},\"275\":{},\"279\":{},\"291\":{},\"334\":{}},\"parent\":{}}],[\"negative\",{\"_index\":86,\"name\":{\"128\":{}},\"parent\":{}}],[\"negative_reasons\",{\"_index\":93,\"name\":{\"135\":{}},\"parent\":{}}],[\"note\",{\"_index\":118,\"name\":{\"160\":{},\"223\":{}},\"parent\":{}}],[\"note_abstract\",{\"_index\":176,\"name\":{\"222\":{}},\"parent\":{}}],[\"notes\",{\"_index\":203,\"name\":{\"260\":{}},\"parent\":{}}],[\"opt_notes_comments\",{\"_index\":210,\"name\":{\"270\":{}},\"parent\":{}}],[\"opt_notes_comments_pupils\",{\"_index\":211,\"name\":{\"271\":{}},\"parent\":{}}],[\"opt_notes_names\",{\"_index\":208,\"name\":{\"269\":{}},\"parent\":{}}],[\"other_negative\",{\"_index\":95,\"name\":{\"137\":{}},\"parent\":{}}],[\"other_negative_count\",{\"_index\":97,\"name\":{\"139\":{}},\"parent\":{}}],[\"other_positive\",{\"_index\":94,\"name\":{\"136\":{}},\"parent\":{}}],[\"other_positive_count\",{\"_index\":96,\"name\":{\"138\":{}},\"parent\":{}}],[\"parentclient\",{\"_index\":29,\"name\":{\"42\":{}},\"parent\":{\"43\":{}}}],[\"parentclient.classchartsparentclient\",{\"_index\":31,\"name\":{},\"parent\":{\"44\":{},\"45\":{},\"46\":{},\"47\":{},\"48\":{},\"49\":{},\"50\":{},\"51\":{},\"52\":{},\"53\":{},\"54\":{},\"55\":{},\"56\":{},\"57\":{},\"58\":{},\"59\":{},\"60\":{},\"61\":{},\"62\":{},\"63\":{},\"64\":{}}}],[\"password\",{\"_index\":32,\"name\":{\"45\":{}},\"parent\":{}}],[\"period_name\",{\"_index\":171,\"name\":{\"215\":{}},\"parent\":{}}],[\"period_number\",{\"_index\":172,\"name\":{\"216\":{}},\"parent\":{}}],[\"polarity\",{\"_index\":104,\"name\":{\"147\":{},\"232\":{}},\"parent\":{}}],[\"positive\",{\"_index\":84,\"name\":{\"127\":{}},\"parent\":{}}],[\"positive_reasons\",{\"_index\":92,\"name\":{\"134\":{}},\"parent\":{}}],[\"priority_pinned\",{\"_index\":223,\"name\":{\"309\":{}},\"parent\":{}}],[\"publish_time\",{\"_index\":150,\"name\":{\"192\":{}},\"parent\":{}}],[\"pupil\",{\"_index\":205,\"name\":{\"262\":{},\"315\":{},\"393\":{}},\"parent\":{}}],[\"pupil_badges\",{\"_index\":195,\"name\":{\"251\":{}},\"parent\":{}}],[\"pupil_concerns_help_text\",{\"_index\":70,\"name\":{\"114\":{},\"360\":{}},\"parent\":{}}],[\"pupil_consents\",{\"_index\":227,\"name\":{\"313\":{}},\"parent\":{}}],[\"pupil_name\",{\"_index\":114,\"name\":{\"156\":{}},\"parent\":{}}],[\"pupil_note\",{\"_index\":178,\"name\":{\"225\":{}},\"parent\":{}}],[\"pupil_note_abstract\",{\"_index\":177,\"name\":{\"224\":{}},\"parent\":{}}],[\"pupil_note_raw\",{\"_index\":179,\"name\":{\"226\":{}},\"parent\":{}}],[\"pupilevent\",{\"_index\":185,\"name\":{\"239\":{},\"386\":{}},\"parent\":{}}],[\"pupils\",{\"_index\":34,\"name\":{\"47\":{}},\"parent\":{}}],[\"pusher_channel_name\",{\"_index\":74,\"name\":{\"118\":{},\"362\":{}},\"parent\":{}}],[\"reason\",{\"_index\":105,\"name\":{\"148\":{},\"229\":{},\"282\":{}},\"parent\":{}}],[\"requires_consent\",{\"_index\":224,\"name\":{\"310\":{}},\"parent\":{}}],[\"room_name\",{\"_index\":117,\"name\":{\"159\":{},\"217\":{}},\"parent\":{}}],[\"school\",{\"_index\":207,\"name\":{\"267\":{}},\"parent\":{}}],[\"school_logo\",{\"_index\":216,\"name\":{\"299\":{},\"317\":{}},\"parent\":{}}],[\"school_name\",{\"_index\":215,\"name\":{\"297\":{},\"316\":{}},\"parent\":{}}],[\"score\",{\"_index\":106,\"name\":{\"149\":{},\"230\":{}},\"parent\":{}}],[\"selectpupil\",{\"_index\":36,\"name\":{\"50\":{}},\"parent\":{}}],[\"sessionid\",{\"_index\":7,\"name\":{\"6\":{},\"29\":{},\"54\":{},\"74\":{}},\"parent\":{}}],[\"start\",{\"_index\":87,\"name\":{\"130\":{}},\"parent\":{}}],[\"start_time\",{\"_index\":173,\"name\":{\"219\":{}},\"parent\":{}}],[\"state\",{\"_index\":153,\"name\":{\"196\":{},\"301\":{}},\"parent\":{}}],[\"status\",{\"_index\":151,\"name\":{\"193\":{}},\"parent\":{}}],[\"sticky\",{\"_index\":217,\"name\":{\"300\":{}},\"parent\":{}}],[\"student\",{\"_index\":41,\"name\":{\"86\":{},\"370\":{}},\"parent\":{}}],[\"studentclient\",{\"_index\":37,\"name\":{\"65\":{}},\"parent\":{\"66\":{}}}],[\"studentclient.classchartsstudentclient\",{\"_index\":39,\"name\":{},\"parent\":{\"67\":{},\"68\":{},\"69\":{},\"70\":{},\"71\":{},\"72\":{},\"73\":{},\"74\":{},\"75\":{},\"76\":{},\"77\":{},\"78\":{},\"79\":{},\"80\":{},\"81\":{},\"82\":{},\"83\":{},\"84\":{}}}],[\"studentcode\",{\"_index\":24,\"name\":{\"24\":{},\"68\":{}},\"parent\":{}}],[\"studentid\",{\"_index\":4,\"name\":{\"3\":{},\"26\":{},\"51\":{},\"71\":{}},\"parent\":{}}],[\"studentname\",{\"_index\":5,\"name\":{\"4\":{},\"27\":{},\"52\":{},\"72\":{}},\"parent\":{}}],[\"style\",{\"_index\":109,\"name\":{\"152\":{}},\"parent\":{}}],[\"subject\",{\"_index\":139,\"name\":{\"180\":{},\"276\":{}},\"parent\":{}}],[\"subject_name\",{\"_index\":169,\"name\":{\"213\":{}},\"parent\":{}}],[\"survey_id\",{\"_index\":77,\"name\":{\"121\":{},\"365\":{}},\"parent\":{}}],[\"teacher\",{\"_index\":140,\"name\":{\"181\":{},\"234\":{},\"283\":{}},\"parent\":{}}],[\"teacher_name\",{\"_index\":116,\"name\":{\"158\":{},\"211\":{},\"298\":{}},\"parent\":{}}],[\"ticked\",{\"_index\":156,\"name\":{\"199\":{}},\"parent\":{}}],[\"time\",{\"_index\":204,\"name\":{\"261\":{}},\"parent\":{}}],[\"timeline\",{\"_index\":90,\"name\":{\"133\":{}},\"parent\":{}}],[\"timestamp\",{\"_index\":107,\"name\":{\"150\":{},\"233\":{},\"240\":{},\"302\":{}},\"parent\":{}}],[\"timestamp_custom_time\",{\"_index\":108,\"name\":{\"151\":{}},\"parent\":{}}],[\"timezone\",{\"_index\":230,\"name\":{\"318\":{}},\"parent\":{}}],[\"title\",{\"_index\":142,\"name\":{\"184\":{},\"236\":{},\"288\":{},\"295\":{}},\"parent\":{}}],[\"to\",{\"_index\":82,\"name\":{\"125\":{},\"142\":{}},\"parent\":{}}],[\"todate\",{\"_index\":130,\"name\":{\"172\":{}},\"parent\":{}}],[\"type\",{\"_index\":103,\"name\":{\"146\":{}},\"parent\":{}}],[\"types\",{\"_index\":40,\"name\":{\"85\":{}},\"parent\":{\"86\":{},\"123\":{},\"126\":{},\"132\":{},\"140\":{},\"144\":{},\"167\":{},\"168\":{},\"169\":{},\"173\":{},\"178\":{},\"207\":{},\"208\":{},\"210\":{},\"227\":{},\"228\":{},\"239\":{},\"245\":{},\"253\":{},\"254\":{},\"292\":{},\"293\":{},\"314\":{},\"315\":{},\"367\":{}}}],[\"types.activitypoint\",{\"_index\":102,\"name\":{},\"parent\":{\"145\":{},\"146\":{},\"147\":{},\"148\":{},\"149\":{},\"150\":{},\"151\":{},\"152\":{},\"153\":{},\"156\":{},\"157\":{},\"158\":{},\"159\":{},\"160\":{},\"161\":{},\"162\":{},\"163\":{},\"164\":{},\"165\":{},\"166\":{}}}],[\"types.activitypoint.__type\",{\"_index\":112,\"name\":{},\"parent\":{\"154\":{},\"155\":{}}}],[\"types.announcement\",{\"_index\":214,\"name\":{},\"parent\":{\"294\":{},\"295\":{},\"296\":{},\"297\":{},\"298\":{},\"299\":{},\"300\":{},\"301\":{},\"302\":{},\"303\":{},\"304\":{},\"305\":{},\"306\":{},\"307\":{},\"308\":{},\"309\":{},\"310\":{},\"311\":{},\"312\":{},\"313\":{}}}],[\"types.badge\",{\"_index\":192,\"name\":{},\"parent\":{\"246\":{},\"247\":{},\"248\":{},\"249\":{},\"250\":{},\"251\":{},\"252\":{}}}],[\"types.behaviourresponse\",{\"_index\":91,\"name\":{},\"parent\":{\"133\":{},\"134\":{},\"135\":{},\"136\":{},\"137\":{},\"138\":{},\"139\":{}}}],[\"types.behaviourtimelinepoint\",{\"_index\":85,\"name\":{},\"parent\":{\"127\":{},\"128\":{},\"129\":{},\"130\":{},\"131\":{}}}],[\"types.detention\",{\"_index\":199,\"name\":{},\"parent\":{\"255\":{},\"256\":{},\"257\":{},\"258\":{},\"259\":{},\"260\":{},\"261\":{},\"262\":{},\"263\":{},\"272\":{},\"273\":{},\"280\":{},\"281\":{},\"283\":{},\"284\":{},\"289\":{},\"290\":{}}}],[\"types.detention.__type\",{\"_index\":206,\"name\":{},\"parent\":{\"264\":{},\"265\":{},\"266\":{},\"267\":{},\"268\":{},\"274\":{},\"275\":{},\"276\":{},\"277\":{},\"282\":{},\"285\":{},\"286\":{},\"287\":{},\"288\":{},\"291\":{}}}],[\"types.detention.__type.__type\",{\"_index\":209,\"name\":{},\"parent\":{\"269\":{},\"270\":{},\"271\":{},\"278\":{},\"279\":{}}}],[\"types.getactivityoptions\",{\"_index\":99,\"name\":{},\"parent\":{\"141\":{},\"142\":{},\"143\":{}}}],[\"types.getbehaviouroptions\",{\"_index\":81,\"name\":{},\"parent\":{\"124\":{},\"125\":{}}}],[\"types.gethomeworkoptions\",{\"_index\":128,\"name\":{},\"parent\":{\"170\":{},\"171\":{},\"172\":{}}}],[\"types.getlessonsoptions\",{\"_index\":167,\"name\":{},\"parent\":{\"209\":{}}}],[\"types.homework\",{\"_index\":138,\"name\":{},\"parent\":{\"179\":{},\"180\":{},\"181\":{},\"182\":{},\"183\":{},\"184\":{},\"185\":{},\"186\":{},\"187\":{},\"188\":{},\"189\":{},\"190\":{},\"191\":{},\"192\":{},\"193\":{},\"194\":{},\"205\":{},\"206\":{}}}],[\"types.homework.__type\",{\"_index\":152,\"name\":{},\"parent\":{\"195\":{},\"196\":{},\"197\":{},\"198\":{},\"199\":{},\"200\":{},\"201\":{},\"202\":{},\"203\":{},\"204\":{}}}],[\"types.lesson\",{\"_index\":168,\"name\":{},\"parent\":{\"211\":{},\"212\":{},\"213\":{},\"214\":{},\"215\":{},\"216\":{},\"217\":{},\"218\":{},\"219\":{},\"220\":{},\"221\":{},\"222\":{},\"223\":{},\"224\":{},\"225\":{},\"226\":{}}}],[\"types.lessonpupilbehaviour\",{\"_index\":182,\"name\":{},\"parent\":{\"229\":{},\"230\":{},\"231\":{},\"232\":{},\"233\":{},\"234\":{},\"235\":{}}}],[\"types.lessonpupilbehaviour.__type\",{\"_index\":184,\"name\":{},\"parent\":{\"236\":{},\"237\":{},\"238\":{}}}],[\"types.pupil\",{\"_index\":229,\"name\":{},\"parent\":{\"316\":{},\"317\":{},\"318\":{},\"319\":{},\"320\":{},\"321\":{},\"322\":{},\"323\":{},\"324\":{},\"325\":{},\"326\":{},\"327\":{},\"328\":{},\"329\":{},\"330\":{},\"331\":{},\"332\":{},\"333\":{},\"334\":{},\"335\":{},\"336\":{},\"337\":{},\"338\":{},\"339\":{},\"340\":{},\"341\":{},\"342\":{},\"343\":{},\"344\":{},\"345\":{},\"346\":{},\"347\":{},\"348\":{},\"349\":{},\"350\":{},\"351\":{},\"352\":{},\"353\":{},\"354\":{},\"355\":{},\"356\":{},\"357\":{},\"358\":{},\"359\":{},\"360\":{},\"361\":{},\"362\":{},\"363\":{},\"364\":{},\"365\":{},\"366\":{}}}],[\"types.pupilevent\",{\"_index\":186,\"name\":{},\"parent\":{\"240\":{},\"241\":{},\"242\":{},\"243\":{}}}],[\"types.pupilevent.__type\",{\"_index\":190,\"name\":{},\"parent\":{\"244\":{}}}],[\"types.student\",{\"_index\":43,\"name\":{},\"parent\":{\"87\":{},\"88\":{},\"89\":{},\"90\":{},\"91\":{},\"92\":{},\"93\":{},\"94\":{},\"95\":{},\"96\":{},\"97\":{},\"98\":{},\"99\":{},\"100\":{},\"101\":{},\"102\":{},\"103\":{},\"104\":{},\"105\":{},\"106\":{},\"107\":{},\"108\":{},\"109\":{},\"110\":{},\"111\":{},\"112\":{},\"113\":{},\"114\":{},\"115\":{},\"116\":{},\"117\":{},\"118\":{},\"119\":{},\"120\":{},\"121\":{},\"122\":{}}}],[\"types.validatedhomeworkattachment\",{\"_index\":132,\"name\":{},\"parent\":{\"174\":{},\"175\":{},\"176\":{},\"177\":{}}}],[\"validated_attachments\",{\"_index\":163,\"name\":{\"206\":{}},\"parent\":{}}],[\"validated_file\",{\"_index\":135,\"name\":{\"177\":{}},\"parent\":{}}],[\"validated_links\",{\"_index\":162,\"name\":{\"205\":{}},\"parent\":{}}],[\"validatedhomeworkattachment\",{\"_index\":131,\"name\":{\"173\":{},\"379\":{}},\"parent\":{}}]],\"pipeline\":[]}}"); \ No newline at end of file diff --git a/docs/classes/baseClient.ClasschartsClient.html b/docs/classes/baseClient.ClasschartsClient.html new file mode 100644 index 0000000..8bb4704 --- /dev/null +++ b/docs/classes/baseClient.ClasschartsClient.html @@ -0,0 +1,37 @@ +ClasschartsClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
+

The base client

+

Hierarchy

Index

Constructors

Properties

API_BASE: string = ""
authCookies: undefined | string[]
sessionId: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • +

    Gets general information about the logged in student

    +

    Returns Promise<Student>

    Student object

    +
  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>
  • Parameters

    • path: string
    • options: Omit<RequestOptions, "origin" | "path">

    Returns Promise<any>

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Type alias
  • Interface
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/client.ClasschartsClient.html b/docs/classes/client.ClasschartsClient.html deleted file mode 100644 index 46cc1ed..0000000 --- a/docs/classes/client.ClasschartsClient.html +++ /dev/null @@ -1,37 +0,0 @@ -ClasschartsClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

The base client

-

Hierarchy

Index

Constructors

  • Parameters

    • API_BASE: string
      -

      Base API URL, this is different depending if its called as a parent or student

      -

    Returns ClasschartsClient

Properties

API_BASE: string = ""
authCookies: undefined | string[]
sessionId: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • -

    Gets general information about the logged in student

    -

    Returns Promise<Student>

    Student object

    -
  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>
  • Parameters

    • path: string
    • options: Omit<RequestOptions, "origin" | "path">

    Returns Promise<any>

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Type alias
  • Interface
  • Protected property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/dummyClient.ClasschartsClient.html b/docs/classes/dummyClient.ClasschartsClient.html new file mode 100644 index 0000000..64624fe --- /dev/null +++ b/docs/classes/dummyClient.ClasschartsClient.html @@ -0,0 +1,35 @@ +ClasschartsClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
deprecated

Use ClasschartsStudentClient

+

Hierarchy

  • ClasschartsClient

Index

Constructors

  • deprecated

    Use ClasschartsStudentClient

    +

    Parameters

    • studentCode: string
      +

      Classcharts student code

      +
    • Optional dateOfBirth: string
      +

      Student's date of birth

      +

    Returns ClasschartsClient

Properties

authCookies: undefined | string[]
dateOfBirth: string = ""
sessionId: string = ""
studentCode: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • init(): Promise<void>
  • login(): Promise<void>
  • deprecated

    Use ClasschartsStudentClient +Initialises the client and authenticates with classcharts

    +

    Returns Promise<void>

  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>
  • Parameters

    • path: string
    • options: Omit<RequestOptions, "origin" | "path">

    Returns Promise<any>

Legend

  • Class
  • Constructor
  • Property
  • Method
  • Variable
  • Type alias
  • Interface
  • Private property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/parent.ClasschartsParentClient.html b/docs/classes/parent.ClasschartsParentClient.html deleted file mode 100644 index 89adeef..0000000 --- a/docs/classes/parent.ClasschartsParentClient.html +++ /dev/null @@ -1,44 +0,0 @@ -ClasschartsParentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

The base client

-

Hierarchy

Index

Constructors

Properties

API_BASE: string = ""
authCookies: undefined | string[]
email: string = ""
password: string = ""
sessionId: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • login(): Promise<void>
  • -

    Logs the user in the client and authenticates with classcharts

    -

    Returns Promise<void>

  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>

Legend

  • Class
  • Constructor
  • Method
  • Variable
  • Type alias
  • Interface
  • Inherited method
  • Private property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/parentClient.ClasschartsParentClient.html b/docs/classes/parentClient.ClasschartsParentClient.html new file mode 100644 index 0000000..88d6970 --- /dev/null +++ b/docs/classes/parentClient.ClasschartsParentClient.html @@ -0,0 +1,48 @@ +ClasschartsParentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
+

The base client

+

Hierarchy

Index

Constructors

Properties

API_BASE: string = ""
authCookies: undefined | string[]
email: string = ""
password: string = ""
sessionId: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • login(): Promise<void>
  • +

    Logs the user in the client and authenticates with classcharts

    +

    Returns Promise<void>

  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>
  • selectPupil(pupilId: number): Promise<void>
  • +

    Selects a pupil to be used with API requests

    +

    Parameters

    • pupilId: number
      +

      Pupil ID obtained from this.pupils or getPupils

      +

    Returns Promise<void>

Legend

  • Class
  • Constructor
  • Property
  • Method
  • Variable
  • Type alias
  • Interface
  • Inherited method
  • Private property

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/student.ClasschartsStudentClient.html b/docs/classes/student.ClasschartsStudentClient.html deleted file mode 100644 index 1f7e11c..0000000 --- a/docs/classes/student.ClasschartsStudentClient.html +++ /dev/null @@ -1,41 +0,0 @@ -ClasschartsStudentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
-

The base client

-

Hierarchy

Index

Constructors

Properties

API_BASE: string = ""
authCookies: undefined | string[]
dateOfBirth: string = ""
sessionId: string = ""
studentCode: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • login(): Promise<void>
  • -

    Initialises the client and authenticates with classcharts

    -

    Returns Promise<void>

  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>

Legend

  • Class
  • Constructor
  • Property
  • Method
  • Variable
  • Type alias
  • Interface
  • Inherited method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/classes/studentClient.ClasschartsStudentClient.html b/docs/classes/studentClient.ClasschartsStudentClient.html new file mode 100644 index 0000000..c5cf76f --- /dev/null +++ b/docs/classes/studentClient.ClasschartsStudentClient.html @@ -0,0 +1,41 @@ +ClasschartsStudentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu
+

The base client

+

Hierarchy

Index

Constructors

Properties

API_BASE: string = ""
authCookies: undefined | string[]
dateOfBirth: string = ""
sessionId: string = ""
studentCode: string = ""
studentId: number = 0
studentName: string = ""

Methods

  • login(): Promise<void>
  • +

    Initialises the client and authenticates with classcharts

    +

    Returns Promise<void>

  • makeAuthedRequest(path: string, options: Omit<RequestOptions, "origin" | "path">): Promise<any>

Legend

  • Class
  • Constructor
  • Property
  • Method
  • Variable
  • Type alias
  • Interface
  • Inherited method

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 59f82d6..9432e12 100644 --- a/docs/index.html +++ b/docs/index.html @@ -3,11 +3,32 @@

Classcharts API

A very WIP client for the classcharts API

-

Documentation

- +
    +
  • Documentation
  • +
  • Discord

    Examples

    -
    import { ClasschartsStudentClient } from "classcharts-api";
    async function main() {
    const client = new ClasschartsStudentClient("classchartsCode", "01/1/2000");
    await client.init();
    console.log(
    await client.getBehaviour({
    displayDate: "due_date",
    fromDate: "20/01/2000",
    toDate: "01/02/2000",
    })
    );
    console.log(await client.getActivity());
    console.log(await client.getStudentInfo());
    console.log(await client.getActivity());
    console.log(await client.getActivity());
    }

    main(); +Docs are very much a WIP, for any help with the libary, please join the discord above +```typescript +import { ClasschartsStudentClient } from "classcharts-api"; +async function main() { +const client = new ClasschartsStudentClient("classchartsCode", "01/1/2000"); +await client.init(); +console.log( + await client.getBehaviour({ +displayDate: "due_date", +fromDate: "20/01/2000", +toDate: "01/02/2000", + }) +); +console.log(await client.getActivity()); +console.log(await client.getStudentInfo()); +console.log(await client.getActivity()); +console.log(await client.getActivity()); +}
  • +
+

main();

+

 
-

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.ActivityPoint.html b/docs/interfaces/types.ActivityPoint.html index 6f15d79..830e6b2 100644 --- a/docs/interfaces/types.ActivityPoint.html +++ b/docs/interfaces/types.ActivityPoint.html @@ -1 +1 @@ -ActivityPoint | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ActivityPoint

Hierarchy

  • ActivityPoint

Index

Properties

_can_delete: boolean
badges: undefined | string
detention_date: null | string
detention_location: null | string
detention_time: null | string
detention_type: null | string
id: number
lesson_name: string
note: string
polarity: string
pupil_name: string
reason: string
room_name: null | string
score: number
style: { border_color: null | string; custom_class: null | string }

Type declaration

  • border_color: null | string
  • custom_class: null | string
teacher_name: string
timestamp: string
timestamp_custom_time: null | string
type: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ActivityPoint | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ActivityPoint

Hierarchy

  • ActivityPoint

Index

Properties

_can_delete: boolean
badges: undefined | string
detention_date: null | string
detention_location: null | string
detention_time: null | string
detention_type: null | string
id: number
lesson_name: string
note: string
polarity: string
pupil_name: string
reason: string
room_name: null | string
score: number
style: { border_color: null | string; custom_class: null | string }

Type declaration

  • border_color: null | string
  • custom_class: null | string
teacher_name: string
timestamp: string
timestamp_custom_time: null | string
type: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Announcement.html b/docs/interfaces/types.Announcement.html index c666190..b73e7b6 100644 --- a/docs/interfaces/types.Announcement.html +++ b/docs/interfaces/types.Announcement.html @@ -1 +1 @@ -Announcement | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Announcement

Hierarchy

  • Announcement

Index

Properties

allow_comments: BooleanHuman
allow_consent: BooleanHuman
allow_reactions: BooleanHuman
attachments: { filename: string; url: string }[]
can_change_consent: boolean
comment_visibility: string
consent: null | string
description: null | string
for_pupils: any[]
id: number
priority_pinned: BooleanHuman
pupil_consents: any[]
requires_consent: BooleanHuman
school_logo: null | string
school_name: string
state: null | string
sticky: BooleanHuman
teacher_name: string
timestamp: string
title: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Announcement | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Announcement

Hierarchy

  • Announcement

Index

Properties

allow_comments: BooleanHuman
allow_consent: BooleanHuman
allow_reactions: BooleanHuman
attachments: { filename: string; url: string }[]
can_change_consent: boolean
comment_visibility: string
consent: null | string
description: null | string
for_pupils: any[]
id: number
priority_pinned: BooleanHuman
pupil_consents: any[]
requires_consent: BooleanHuman
school_logo: null | string
school_name: string
state: null | string
sticky: BooleanHuman
teacher_name: string
timestamp: string
title: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Badge.html b/docs/interfaces/types.Badge.html index c69914f..9184131 100644 --- a/docs/interfaces/types.Badge.html +++ b/docs/interfaces/types.Badge.html @@ -1 +1 @@ -Badge | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Badge

Index

Properties

colour: string
created_date: string
icon: string
icon_url: string
id: number
name: string
pupil_badges: PupilEvent[]

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Badge | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Badge

Index

Properties

colour: string
created_date: string
icon: string
icon_url: string
id: number
name: string
pupil_badges: PupilEvent[]

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.BehaviourResponse.html b/docs/interfaces/types.BehaviourResponse.html index fd6cf0d..8f395ad 100644 --- a/docs/interfaces/types.BehaviourResponse.html +++ b/docs/interfaces/types.BehaviourResponse.html @@ -1 +1 @@ -BehaviourResponse | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface BehaviourResponse

Hierarchy

  • BehaviourResponse

Index

Properties

negative_reasons: Record<string, number>
other_negative: string[]
other_negative_count: Record<string, number>[]
other_positive: string[]
other_positive_count: Record<string, number>[]
positive_reasons: Record<string, number>

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +BehaviourResponse | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface BehaviourResponse

Hierarchy

  • BehaviourResponse

Index

Properties

negative_reasons: Record<string, number>
other_negative: string[]
other_negative_count: Record<string, number>[]
other_positive: string[]
other_positive_count: Record<string, number>[]
positive_reasons: Record<string, number>

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.BehaviourTimelinePoint.html b/docs/interfaces/types.BehaviourTimelinePoint.html index efd4d3f..5c74cca 100644 --- a/docs/interfaces/types.BehaviourTimelinePoint.html +++ b/docs/interfaces/types.BehaviourTimelinePoint.html @@ -1 +1 @@ -BehaviourTimelinePoint | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface BehaviourTimelinePoint

Hierarchy

  • BehaviourTimelinePoint

Index

Properties

end: string
name: string
negative: number
positive: number
start: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +BehaviourTimelinePoint | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface BehaviourTimelinePoint

Hierarchy

  • BehaviourTimelinePoint

Index

Properties

end: string
name: string
negative: number
positive: number
start: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Detention.html b/docs/interfaces/types.Detention.html index bb17b27..9d6c03e 100644 --- a/docs/interfaces/types.Detention.html +++ b/docs/interfaces/types.Detention.html @@ -1 +1 @@ -Detention | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Detention

Index

Properties

attended: BooleanHuman | "upscaled" | "pending"
date: null | string
detention_type: { name: string }

Type declaration

  • name: string
id: number
length: null | number
lesson: { id: number; name: string; subject: { id: number; name: string } }

Type declaration

  • id: number
  • name: string
  • subject: { id: number; name: string }
    • id: number
    • name: string
lesson_pupil_behaviour: { reason: string }

Type declaration

  • reason: string
location: null | string
notes: null | string
pupil: { first_name: string; id: number; last_name: string; school: { opt_notes_comments: BooleanHuman; opt_notes_comments_pupils: BooleanHuman; opt_notes_names: BooleanHuman } }

Type declaration

  • first_name: string
  • id: number
  • last_name: string
  • school: { opt_notes_comments: BooleanHuman; opt_notes_comments_pupils: BooleanHuman; opt_notes_names: BooleanHuman }
    • opt_notes_comments: BooleanHuman
    • opt_notes_comments_pupils: BooleanHuman
    • opt_notes_names: BooleanHuman
teacher: { first_name: string; id: number; last_name: string; title: string }

Type declaration

  • first_name: string
  • id: number
  • last_name: string
  • title: string
time: null | string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Detention | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Detention

Index

Properties

attended: BooleanHuman | "upscaled" | "pending"
date: null | string
detention_type: { name: string }

Type declaration

  • name: string
id: number
length: null | number
lesson: { id: number; name: string; subject: { id: number; name: string } }

Type declaration

  • id: number
  • name: string
  • subject: { id: number; name: string }
    • id: number
    • name: string
lesson_pupil_behaviour: { reason: string }

Type declaration

  • reason: string
location: null | string
notes: null | string
pupil: { first_name: string; id: number; last_name: string; school: { opt_notes_comments: BooleanHuman; opt_notes_comments_pupils: BooleanHuman; opt_notes_names: BooleanHuman } }

Type declaration

  • first_name: string
  • id: number
  • last_name: string
  • school: { opt_notes_comments: BooleanHuman; opt_notes_comments_pupils: BooleanHuman; opt_notes_names: BooleanHuman }
    • opt_notes_comments: BooleanHuman
    • opt_notes_comments_pupils: BooleanHuman
    • opt_notes_names: BooleanHuman
teacher: { first_name: string; id: number; last_name: string; title: string }

Type declaration

  • first_name: string
  • id: number
  • last_name: string
  • title: string
time: null | string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.GetActivityOptions.html b/docs/interfaces/types.GetActivityOptions.html index d440ca7..29e8951 100644 --- a/docs/interfaces/types.GetActivityOptions.html +++ b/docs/interfaces/types.GetActivityOptions.html @@ -1,7 +1,7 @@ -GetActivityOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetActivityOptions

Hierarchy

  • GetActivityOptions

Index

Properties

Properties

from?: string
+GetActivityOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetActivityOptions

Hierarchy

  • GetActivityOptions

Index

Properties

Properties

from?: string

From date, in format YYYY-MM-DD

-
last_id?: string
+
last_id?: string

ID of the last activityPoint (used in pagination)

-
to?: string
+
to?: string

To date, in format YYYY-MM-DD

-

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.GetBehaviourOptions.html b/docs/interfaces/types.GetBehaviourOptions.html index e691c52..c07995c 100644 --- a/docs/interfaces/types.GetBehaviourOptions.html +++ b/docs/interfaces/types.GetBehaviourOptions.html @@ -1,5 +1,5 @@ -GetBehaviourOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetBehaviourOptions

Hierarchy

  • GetBehaviourOptions

Index

Properties

Properties

from?: string
+GetBehaviourOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetBehaviourOptions

Hierarchy

  • GetBehaviourOptions

Index

Properties

Properties

from?: string

From date, in format YYYY-MM-DD

-
to?: string
+
to?: string

To date, in format YYYY-MM-DD

-

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.GetHomeworkOptions.html b/docs/interfaces/types.GetHomeworkOptions.html index 17f3299..92f4dbd 100644 --- a/docs/interfaces/types.GetHomeworkOptions.html +++ b/docs/interfaces/types.GetHomeworkOptions.html @@ -1,7 +1,7 @@ -GetHomeworkOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetHomeworkOptions

Hierarchy

  • GetHomeworkOptions

Index

Properties

displayDate?: DisplayDate
+GetHomeworkOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetHomeworkOptions

Hierarchy

  • GetHomeworkOptions

Index

Properties

displayDate?: DisplayDate

Way to sort homeworks

-
fromDate?: string
+
fromDate?: string

From date, in format YYYY-MM-DD

-
toDate?: string
+
toDate?: string

To date, in format YYYY-MM-DD

-

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.GetLessonsOptions.html b/docs/interfaces/types.GetLessonsOptions.html index d1bf6d9..a28bbb6 100644 --- a/docs/interfaces/types.GetLessonsOptions.html +++ b/docs/interfaces/types.GetLessonsOptions.html @@ -1,3 +1,3 @@ -GetLessonsOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetLessonsOptions

Hierarchy

  • GetLessonsOptions

Index

Properties

Properties

date: string
+GetLessonsOptions | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GetLessonsOptions

Hierarchy

  • GetLessonsOptions

Index

Properties

Properties

date: string

Date to get lessons for, in format YYYY-MM-DD

-

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Homework.html b/docs/interfaces/types.Homework.html index c3ac7b8..a1b1c25 100644 --- a/docs/interfaces/types.Homework.html +++ b/docs/interfaces/types.Homework.html @@ -1 +1 @@ -Homework | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Homework

Index

Properties

completion_time_unit: string
completion_time_value: string
description: string
description_raw: string
due_date: string
homework_type: string
id: number
issue_date: string
lesson: string
meta_title: string
publish_time: string
status: { allow_attachments: BooleanHuman; attachments: any[]; first_seen_date: string; has_feedback: boolean; id: number; last_seen_date: string; mark: any; mark_relative: number; state: null | "not_completed" | "late" | "completed"; ticked: BooleanHuman }

Type declaration

  • allow_attachments: BooleanHuman
  • attachments: any[]
  • first_seen_date: string
  • has_feedback: boolean
  • id: number
  • last_seen_date: string
  • mark: any
  • mark_relative: number
  • state: null | "not_completed" | "late" | "completed"
  • ticked: BooleanHuman
subject: string
teacher: string
title: string
validated_attachments: ValidatedHomeworkAttachment[]
validated_links: any[]

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Homework | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Homework

Index

Properties

completion_time_unit: string
completion_time_value: string
description: string
description_raw: string
due_date: string
homework_type: string
id: number
issue_date: string
lesson: string
meta_title: string
publish_time: string
status: { allow_attachments: BooleanHuman; attachments: any[]; first_seen_date: string; has_feedback: boolean; id: number; last_seen_date: string; mark: any; mark_relative: number; state: null | "not_completed" | "late" | "completed"; ticked: BooleanHuman }

Type declaration

  • allow_attachments: BooleanHuman
  • attachments: any[]
  • first_seen_date: string
  • has_feedback: boolean
  • id: number
  • last_seen_date: string
  • mark: any
  • mark_relative: number
  • state: null | "not_completed" | "late" | "completed"
  • ticked: BooleanHuman
subject: string
teacher: string
title: string
validated_attachments: ValidatedHomeworkAttachment[]
validated_links: any[]

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Lesson.html b/docs/interfaces/types.Lesson.html index ba3b109..28c8bf0 100644 --- a/docs/interfaces/types.Lesson.html +++ b/docs/interfaces/types.Lesson.html @@ -1 +1 @@ -Lesson | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Lesson

Index

Properties

date: string
end_time: string
is_alternative_lesson: boolean
key: number
lesson_name: string
note: string
note_abstract: string
period_name: string
period_number: string
pupil_note: string
pupil_note_abstract: string
pupil_note_raw: string
room_name: string
start_time: string
subject_name: string
teacher_name: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Lesson | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Lesson

Index

Properties

date: string
end_time: string
is_alternative_lesson: boolean
key: number
lesson_name: string
note: string
note_abstract: string
period_name: string
period_number: string
pupil_note: string
pupil_note_abstract: string
pupil_note_raw: string
room_name: string
start_time: string
subject_name: string
teacher_name: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.LessonPupilBehaviour.html b/docs/interfaces/types.LessonPupilBehaviour.html index c21c591..42b1d4f 100644 --- a/docs/interfaces/types.LessonPupilBehaviour.html +++ b/docs/interfaces/types.LessonPupilBehaviour.html @@ -1 +1 @@ -LessonPupilBehaviour | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface LessonPupilBehaviour

Hierarchy

  • LessonPupilBehaviour

Index

Properties

icon: string
polarity: string
reason: string
score: number
teacher: { first_name: string; last_name: string; title: string }

Type declaration

  • first_name: string
  • last_name: string
  • title: string
timestamp: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +LessonPupilBehaviour | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface LessonPupilBehaviour

Hierarchy

  • LessonPupilBehaviour

Index

Properties

icon: string
polarity: string
reason: string
score: number
teacher: { first_name: string; last_name: string; title: string }

Type declaration

  • first_name: string
  • last_name: string
  • title: string
timestamp: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Pupil.html b/docs/interfaces/types.Pupil.html new file mode 100644 index 0000000..ec79861 --- /dev/null +++ b/docs/interfaces/types.Pupil.html @@ -0,0 +1 @@ +Pupil | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

allow_pupils_add_timetable_notes: boolean
announcements_count: number
avatar_url: string
can_record_covid_tests: boolean
can_upload_attachments: null | string
detention_alias_plural_uc: string
detention_no_count: number
detention_pending_count: number
detention_upscaled_count: number
detention_yes_count: number
display_absences: boolean
display_activity: boolean
display_announcements: boolean
display_attendance: boolean
display_attendance_percentage: boolean
display_attendance_type: string
display_avatars: boolean
display_behaviour: boolean
display_classes: boolean
display_concern_submission: boolean
display_covid_tests: boolean
display_custom_fields: boolean
display_detentions: boolean
display_event_badges: boolean
display_homework: boolean
display_mental_health: boolean
display_parent_behaviour: boolean
display_report_cards: boolean
display_rewards: boolean
display_timetable: boolean
display_two_way_communications: boolean
first_name: string
has_birthday: boolean
has_new_survey: boolean
homework_completed_count: number
homework_excused_count: number
homework_late_count: number
homework_not_completed_count: number
homework_submitted_count: number
homework_todo_count: number
id: number
is_disabled: boolean
last_name: string
messages_count: number
name: string
pupil_concerns_help_text: string
pusher_channel_name: string
school_logo: string
school_name: string
survey_id: null | number
timezone: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.PupilEvent.html b/docs/interfaces/types.PupilEvent.html index ea7bd15..dbdcd29 100644 --- a/docs/interfaces/types.PupilEvent.html +++ b/docs/interfaces/types.PupilEvent.html @@ -1 +1 @@ -PupilEvent | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PupilEvent

Hierarchy

  • PupilEvent

Index

Properties

event: { label: string }

Type declaration

  • label: string
lesson_pupil_behaviour: LessonPupilBehaviour
timestamp: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +PupilEvent | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface PupilEvent

Hierarchy

  • PupilEvent

Index

Properties

event: { label: string }

Type declaration

  • label: string
lesson_pupil_behaviour: LessonPupilBehaviour
timestamp: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.Student.html b/docs/interfaces/types.Student.html index 67aeb94..16cc221 100644 --- a/docs/interfaces/types.Student.html +++ b/docs/interfaces/types.Student.html @@ -1 +1 @@ -Student | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Student

Index

Properties

allow_pupils_add_timetable_notes: boolean
announcements_count: number
avatar_url: string
can_upload_attachments: null | string
detention_alias_plural_uc: string
display_absences: boolean
display_activity: boolean
display_announcements: boolean
display_attendance: boolean
display_attendance_percentage: boolean
display_attendance_type: string
display_avatars: boolean
display_behaviour: boolean
display_classes: boolean
display_concern_submission: boolean
display_custom_fields: boolean
display_detentions: boolean
display_event_badges: boolean
display_homework: boolean
display_mental_health: boolean
display_parent_behaviour: boolean
display_report_cards: boolean
display_rewards: boolean
display_timetable: boolean
display_two_way_communications: boolean
first_name: string
has_birthday: boolean
has_new_survey: boolean
id: number
is_disabled: boolean
last_name: string
messages_count: number
name: string
pupil_concerns_help_text: string
pusher_channel_name: string
survey_id: null | number

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +Student | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

Index

Properties

allow_pupils_add_timetable_notes: boolean
announcements_count: number
avatar_url: string
can_upload_attachments: null | string
detention_alias_plural_uc: string
display_absences: boolean
display_activity: boolean
display_announcements: boolean
display_attendance: boolean
display_attendance_percentage: boolean
display_attendance_type: string
display_avatars: boolean
display_behaviour: boolean
display_classes: boolean
display_concern_submission: boolean
display_custom_fields: boolean
display_detentions: boolean
display_event_badges: boolean
display_homework: boolean
display_mental_health: boolean
display_parent_behaviour: boolean
display_report_cards: boolean
display_rewards: boolean
display_timetable: boolean
display_two_way_communications: boolean
first_name: string
has_birthday: boolean
has_new_survey: boolean
id: number
is_disabled: boolean
last_name: string
messages_count: number
name: string
pupil_concerns_help_text: string
pusher_channel_name: string
survey_id: null | number

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/interfaces/types.ValidatedHomeworkAttachment.html b/docs/interfaces/types.ValidatedHomeworkAttachment.html index f5b831b..8878d91 100644 --- a/docs/interfaces/types.ValidatedHomeworkAttachment.html +++ b/docs/interfaces/types.ValidatedHomeworkAttachment.html @@ -1 +1 @@ -ValidatedHomeworkAttachment | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ValidatedHomeworkAttachment

Hierarchy

  • ValidatedHomeworkAttachment

Index

Properties

file: string
file_name: string
id: number
validated_file: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +ValidatedHomeworkAttachment | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ValidatedHomeworkAttachment

Hierarchy

  • ValidatedHomeworkAttachment

Index

Properties

file: string
file_name: string
id: number
validated_file: string

Legend

  • Variable
  • Type alias
  • Interface
  • Property
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules.html b/docs/modules.html index a6744b1..1c82ace 100644 --- a/docs/modules.html +++ b/docs/modules.html @@ -1 +1 @@ -classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

classcharts-api

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

classcharts-api

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/baseClient.html b/docs/modules/baseClient.html new file mode 100644 index 0000000..d303825 --- /dev/null +++ b/docs/modules/baseClient.html @@ -0,0 +1 @@ +baseClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module baseClient

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/client.html b/docs/modules/client.html deleted file mode 100644 index 3d7c149..0000000 --- a/docs/modules/client.html +++ /dev/null @@ -1 +0,0 @@ -client | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/consts.html b/docs/modules/consts.html index a9cadd9..68a3904 100644 --- a/docs/modules/consts.html +++ b/docs/modules/consts.html @@ -1 +1 @@ -consts | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

API_BASE_PARENT: string = ...
API_BASE_STUDENT: string = ...
BASE_URL: "https://www.classcharts.com" = "https://www.classcharts.com"

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +consts | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Variables

API_BASE_PARENT: string = ...
API_BASE_STUDENT: string = ...
BASE_URL: "https://www.classcharts.com" = "https://www.classcharts.com"

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/dummyClient.html b/docs/modules/dummyClient.html new file mode 100644 index 0000000..82db5cc --- /dev/null +++ b/docs/modules/dummyClient.html @@ -0,0 +1 @@ +dummyClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module dummyClient

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/index.html b/docs/modules/index.html index 5b933fe..80abef7 100644 --- a/docs/modules/index.html +++ b/docs/modules/index.html @@ -1 +1 @@ -index | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +index | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

References

Re-exports ActivityPoint
Re-exports ActivityResponse
Re-exports Announcement
Re-exports AnnouncementsResponse
Re-exports Badge
Re-exports BadgesResponse
Re-exports BehaviourResponse
Re-exports BehaviourTimelinePoint
Re-exports ClasschartsClient
Re-exports ClasschartsParentClient
Re-exports ClasschartsStudentClient
Re-exports Detention
Re-exports DetentionsResponse
Re-exports DisplayDate
Re-exports GetActivityOptions
Re-exports GetBehaviourOptions
Re-exports GetHomeworkOptions
Re-exports GetLessonsOptions
Re-exports GetPupilsResponse
Re-exports Homework
Re-exports HomeworksResponse
Re-exports Lesson
Re-exports LessonPupilBehaviour
Re-exports LessonsResponse
Re-exports Pupil
Re-exports PupilEvent
Re-exports Student
Re-exports ValidatedHomeworkAttachment

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/parent.html b/docs/modules/parent.html deleted file mode 100644 index b5d3492..0000000 --- a/docs/modules/parent.html +++ /dev/null @@ -1 +0,0 @@ -parent | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/parentClient.html b/docs/modules/parentClient.html new file mode 100644 index 0000000..ae0540b --- /dev/null +++ b/docs/modules/parentClient.html @@ -0,0 +1 @@ +parentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module parentClient

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/student.html b/docs/modules/student.html deleted file mode 100644 index 7f02639..0000000 --- a/docs/modules/student.html +++ /dev/null @@ -1 +0,0 @@ -student | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/studentClient.html b/docs/modules/studentClient.html new file mode 100644 index 0000000..e27938a --- /dev/null +++ b/docs/modules/studentClient.html @@ -0,0 +1 @@ +studentClient | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Module studentClient

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file diff --git a/docs/modules/types.html b/docs/modules/types.html index a5347df..70c8510 100644 --- a/docs/modules/types.html +++ b/docs/modules/types.html @@ -1 +1 @@ -types | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file +types | classcharts-api
Options
All
  • Public
  • Public/Protected
  • All
Menu

Legend

  • Variable
  • Type alias
  • Interface
  • Class

Settings

Theme

Generated using TypeDoc

\ No newline at end of file