@team-llambda/edupoint-pxpwebservices-synergy
Version:
An NPM package for accessing the Edupoint Synergy API on behalf of students, parents, and teachers.
16 lines (14 loc) • 497 B
text/typescript
module EDUPoint {
export class Child {
studentGU: string
childName: string
organizationName: string
grade: string
constructor(data: any) {
this.studentGU = data.attributes["StudentGU"]
this.childName = data.getElementsByTagName("ChildName")[0].value
this.organizationName = data.getElementsByTagName("OrganizationName")[0].value
this.grade = data.getElementsByTagName("Grade")[0].value
}
}
}