GetFullEntry (uncached) func

This commit is contained in:
2023-12-30 10:07:06 -06:00
parent 89c61b590e
commit 756facf1b9
2 changed files with 95 additions and 0 deletions

View File

@@ -9,6 +9,21 @@ type Entry struct {
Phone string
}
type FullEntry struct {
Name string
Classification string
College string
Major string
Email string
// Attributes only for faculty
Title string
Department string
MailingAddress string
Building string
Phone string
Other map[string]string
}
type ConfirmationResponse struct {
FormId string `json:"formId"`
FollowUpUrl string `json:"followUpUrl"`