<?xml version="1.0"?>
<?xml-stylesheet type='text/xsl' href='documentation.xsl'?>
<doc>
  <assembly>
    <name>servicesApplicants</name>
  </assembly>
  <members>
    <member name="T:applicants.App_Code.UtilityClass">
      <summary>
      </summary>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.#ctor">
      <summary>
      </summary>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.getAuthorizedDegreeIDs(System.String)">
      <summary>
            Returns a integer List of authorized degreeIDs for the given certificate subject name
            </summary>
      <param name="cert_name">
      </param>
      <returns>
      </returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.getAuthorizedDegreeCodes(System.String)">
      <summary>
            Returns a integer List of authorized degree codes for the given certificate subject name
            </summary>
      <param name="cert_name">
      </param>
      <returns>
      </returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.getCertSubjectName(System.Security.Cryptography.X509Certificates.X509Certificate2)">
      <summary>
            Parses out the cert common subject name from the X509Certificate2 file
            </summary>
      <param name="cert">
      </param>
      <returns>
      </returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.getCertName(System.Net.Http.HttpRequestMessage)">
      <summary>
            Gets the certificate name for the current request
            </summary>
      <returns>
      </returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.validateDegreeID(System.Int32,System.String)">
      <summary>
            Verifies that the degree id is valid for the specified certificate
            </summary>
      <param name="degreeID">
      </param>
      <param name="cert_name">
      </param>
      <returns>A list of ints with 0 or 1 degree IDs</returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.validateDegreeCode(System.String,System.String)">
      <summary>
            Verifies that the degree code is valid for the specified certificate
            </summary>
      <param name="degreeCode">
      </param>
      <param name="cert_name">
      </param>
      <returns>A list of string with 0 or 1 degree codes</returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.validateDegreeIDByCode(System.String,System.String)">
      <summary>
            Verifies that the degree id is valid for the specified certificate
            </summary>
      <param name="degreeCode">
      </param>
      <param name="cert_name">
      </param>
      <returns>A list of ints with 0 or 1 gradprogids</returns>
    </member>
    <member name="M:applicants.App_Code.UtilityClass.isCertAuthorized(System.Security.Cryptography.X509Certificates.X509Certificate2)">
      <summary>
            Determines if a specific cert is authorized in the acad table dis_partner_ip
            </summary>
      <param name="cert">
      </param>
      <returns>
      </returns>
    </member>
    <member name="T:applicants.Controllers.unsubmittedController">
      <summary>
            Endpoints for (limited) information about unsubmitted applications
            </summary>
    </member>
    <member name="M:applicants.Controllers.unsubmittedController.Get(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
      <summary>
            Gets a list of unsubmitted applicants for a given program in a given year and quarter
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/unsubmitted?year=[YEAR]&quarter=[QUARTER]&format=[json|xml]]]></example><example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/unsubmitted?degree=[DegreeID|DegreeCode]&year=[YEAR]&quarter=[QUARTER]&format=[json|xml]]]></example></summary>
      <param name="degree">Optional: Either the DegreeID (numeric) or DegreeCode (alphanumeric).
            If not provided, unsubmitted application information for all degrees authorized for the current client certificate will be returned.</param>
      <param name="year">Optional: Limit the results to a specific start year (numeric: four digits)</param>
      <param name="quarter">Optional: Limit the results to a specific start quarter (numeric: 1,2,3 or 4)</param>
      <returns>An array of unsubmittedContainer objects. <see cref="T:applicants.Models.unsubmittedContainer" /></returns>
    </member>
    <member name="T:applicants.Controllers.applicantsController">
      <summary>
            Endpoints for submitted applicant information
            </summary>
    </member>
    <member name="M:applicants.Controllers.applicantsController.Get(System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Boolean})">
      <summary>
            Gets a list of submitted applicants for all degrees authorized for the current client certificate
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applicants?year=[YEAR]&quarter=[QUARTER]&verbose=[true|false]&format=[json|xml]]]></example></summary>
      <param name="year">Optional: Limit the results to a specific start year (numeric: four digits)</param>
      <param name="quarter">Optional: Limit the results to a specific start quarter (numeric: 1,2,3 or 4)</param>
      <param name="verbose">Optional: Include additional data (e.g., list of interests supplied by the applicant). Default is "false".</param>
      <returns>An array of applicantContainer objects (<see cref="T:applicants.Models.applicantContainer" />)</returns>
    </member>
    <member name="M:applicants.Controllers.applicantsController.Get(System.Int32,System.Nullable{System.Boolean})">
      <summary>
            Get a single applicant by the Grad School-generated ApplicationID
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applicants?applId=[Grad School-generated application ID]&verbose=[true|false]&format=[json|xml]]]></example></summary>
      <param name="applId">The Grad School-generated application ID (numeric)</param>
      <param name="verbose">Optional: Include additional data (e.g., list of interests supplied by the applicant). Default is "false".</param>
      <returns>A single applicantContainer. (<see cref="T:applicants.Models.applicantContainer" />)</returns>
    </member>
    <member name="M:applicants.Controllers.applicantsController.Get(System.String,System.Nullable{System.Boolean})">
      <summary>
            Get a single applicant by Slate applicationID
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applicants?slateApplId=[Slate-generated application ID]&verbose=[true|false]&format=[json|xml]]]></example></summary>
      <param name="slateApplId">The Slate-generated application ID</param>
      <param name="verbose">Optional: Include additional data (e.g., list of interests supplied by the applicant). Default is "false".</param>
      <returns>A single applicantContainer. (<see cref="T:applicants.Models.applicantContainer" />)</returns>
    </member>
    <member name="M:applicants.Controllers.applicantsController.Get(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32},System.Nullable{System.Int32},System.String,System.Nullable{System.Boolean})">
      <summary>
            Gets a list of submitted applicants for a given DegreeID or DegreeCode in a given year and quarter
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applicants?degree=[DegreeID|DegreeCode]&year=[YEAR]&quarter=[QUARTER]&verbose=[true|false]&format=[json|xml]]]></example></summary>
      <param name="degree">Optional: Either the DegreeID (numeric) or DegreeCode (alphanumeric).
            If not provided, applicants for all degrees authorized for the current client certificate will be returned.</param>
      <param name="year">Optional: Limit the results to a specific start year (numeric: four digits)</param>
      <param name="quarter">Optional: Limit the results to a specific start quarter (numeric: 1,2,3 or 4)</param>
      <param name="applId">Optional: The Grad School-generated application ID (numeric)</param>
      <param name="slateApplId">Optional: The Slate-generated application ID</param>
      <param name="verbose">Optional: Include additional data (e.g., list of interests supplied by the applicant). Default is "false".</param>
      <returns>An array of applicantContainer objects (<see cref="T:applicants.Models.applicantContainer" />)</returns>
    </member>
    <member name="T:applicants.Controllers.applicationsController">
      <summary>
            Endpoints for submitted applications
            </summary>
    </member>
    <member name="M:applicants.Controllers.applicationsController.Get(System.Nullable{System.Int32},System.Nullable{System.Int32})">
      <summary>
            Gets a list of submitted applications for all degrees authorized for the certificate for a given yr/qtr in the format specified.
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applications?year=[YEAR]&quarter=[QUARTER]&format=[json|xml]]]></example></summary>
      <param name="year">Optional: Limit the results to a specific start year (numeric: four digits)</param>
      <param name="quarter">Optional: Limit the results to a specific start quarter (numeric: 1,2,3 or 4)</param>
      <returns>An array of applicationContainer objects. (<see cref="T:applicants.Models.applicationContainer" />)</returns>
    </member>
    <member name="M:applicants.Controllers.applicationsController.Get(System.String,System.Nullable{System.Int32},System.Nullable{System.Int32})">
      <summary>
            Gets a list of submitted applications for a given program for a given yr/qtr in the format specified.
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applications?degree=[DegreeID|DegreeCode]&year=[YEAR]&quarter=[QUARTER]&format=[json|xml]]]></example></summary>
            /// <param name="degree">Optional: Either the DegreeID (numeric) or DegreeCode (alphanumeric).
            If not provided, applicants for all degrees authorized for the current client certificate will be returned.</param><param name="year">Optional: Limit the results to a specific start year (numeric: four digits)</param><param name="quarter">Optional: Limit the results to a specific start quarter (numeric: 1,2,3 or 4)</param><returns>An array of applicationContainer objects. (<see cref="T:applicants.Models.applicationContainer" />)</returns></member>
    <member name="M:applicants.Controllers.applicationsController.Get(System.Int32)">
      <summary>
            Get a single application by the Grad School-generated ApplicationID
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applications?applId=[Grad School-generated application ID]&format=[json|xml]]]></example></summary>
      <param name="applId">The application ID (numeric)</param>
      <returns>A single applicationContainer. (<see cref="T:applicants.Models.applicationContainer" />)</returns>
    </member>
    <member name="M:applicants.Controllers.applicationsController.Get(System.String)">
      <summary>
            Get a single application by Slate applicationID
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/applications?slateApplId=[Slate-generated application ID]&format=[json|xml]]]></example></summary>
      <param name="slateApplId">The Slate-generated application ID</param>
      <returns>A single applicationContainer. (<see cref="T:applicants.Models.applicationContainer" />)</returns>
    </member>
    <member name="T:applicants.Controllers.lookupController">
      <summary>
            Endpoints for supplemental lookup data
            </summary>
    </member>
    <member name="M:applicants.Controllers.lookupController.InstitutionCode(System.Nullable{System.Int32})">
      <summary>
            Returns data related to institutions
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/lookup/InstitutionCode?format=[json|xml]]]></example><example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/lookup/InstitutionCode?id=[InstitutionCode]&format=[json|xml]]]></example></summary>
      <param name="id">Optional: a specific numeric institution code</param>
      <returns>An array of objects containing institution data</returns>
    </member>
    <member name="M:applicants.Controllers.lookupController.CountryCode(System.Nullable{System.Int32})">
      <summary>
            Returns data related to countries
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/lookup/CountryCode?format=[json|xml]]]></example><example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/lookup/CountryCode?id=[CountryID]&format=[json|xml]]]></example></summary>
      <param name="id">Optional: a specific numeric CountryID</param>
      <returns>An array of objects containing country data</returns>
    </member>
    <member name="T:applicants.Controllers.gradprogramsController">
      <summary>
            Provides an endpoint for program data in Slate
            </summary>
    </member>
    <member name="M:applicants.Controllers.gradprogramsController.Get">
      <summary>
            Provides a list of grad programs in Slate for which the clients certificate is authorized, along with numbers of applicants for that program by year and quarter .
            <example><![CDATA[https://webapps.grad.uw.edu/services/applicants/V4/api/gradprograms?format=[json|xml]]]></example></summary>
      <returns>An array of programContainer objects. <see cref="T:applicants.Models.programContainer" /></returns>
    </member>
    <member name="T:applicants.Global">
      <summary>
      </summary>
    </member>
    <member name="T:applicants.Models.applicantDetailContainer">
      <summary>
            Container class for summary information regarding a submitted applicant's application
            <link><href>classes/applicantDetailContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationID">
      <summary>
        <type>Integer</type>
            The Grad School-generated application ID. This is what will be in the SDB/EDW to match.
            (In sr_adm_appl, it's the appl_source_id.)
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SlateApplicationReferenceID">
      <summary>
        <type>String</type>
            The Slate-generated application ID
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SlateApplicationGUID">
      <summary>
        <type>GUID</type>
        <type>GUID</type>
            The Slate-generated application GUID
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SlatePersonReferenceID">
      <summary>
        <type>String</type>
            The Slate-generated ID for the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.CloneSourceGUID">
      <summary>
        <type>Nullable GUID</type>
            The Slate-generated application GUID for the original application 
            if this application was duplicated from another application.
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationSubmitDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the application was submitted
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationPaymentDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the application payment was made
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.StatusSlate">
      <summary>
        <type>String</type>
            The applicant's status in Slate. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.StatusSDB">
      <summary>
        <type>Nullable byte</type>
            The applicant's status in the SDB. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SDBApplicationNumber">
      <summary>
        <type>Nullable Integer</type>
            The SDB Application number
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationYear">
      <summary>
        <type>Nullable integer</type>
            Year applying for
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationQuarter">
      <summary>
        <type>Nullable integer</type>
            Quarter applying for
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.DegreeIDApplicationOriginal">
      <summary>
        <type>Nullable integer</type>
            The original application DegreeID that the applicant chose when creating their application 
            (not necessarily the up-to-date coding on the application that is sent to the SDB). 
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.DegreeCodeApplicationOriginal">
      <summary>
        <type>String</type>
            The original application degree code that the applicant chose when creating their application 
            (not necessarily the up-to-date coding on the application that is sent to the SDB). 
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.DegreeIDApplication">
      <summary>
        <type>Integer</type>
            The DegreeID applicant is applying for. (This is the UW Graduate School-specific DegreeID.)
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.DegreeCodeApplication">
      <summary>
        <type>String</type>
            The DegreeCode applicant is applying for.
            A composite string of the SDB degree/credential identifiers (campus, college, major, pathway, degree level, degree type)
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ApplicationLastChangeDate">
      <summary>
        <type>DateTime</type>
            Date and time the application was last updated
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.IsVisitingGrad">
      <summary>
        <type>Boolean</type>
            Is this a visiting grad application?
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SlateApplicationURL">
      <summary>
        <type>String</type>
            URL for this application in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.SlateReaderURL">
      <summary>
        <type>String</type>
            URL to view information for this applicant in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.GAWSApplicationURL">
      <summary>
        <type>String</type>
            URL for this application in GAWS
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.ECDPaymentTime">
      <summary>
        <type>Nullable DateTime</type>
            Date/time ECD payment was recorded
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.OperationalReviewNotes">
      <summary>
        <type>String</type>
            Notes from the operational review (null if empty)
            </summary>
    </member>
    <member name="P:applicants.Models.applicantDetailContainer.Interests">
      <summary>
            List of interests supplied by the applicant. (Empty if the optional "verbose" parameter is not set to true.)
            <see cref="T:applicants.Models.interestContainer" /></summary>
    </member>
    <member name="T:applicants.Models.applicantPersonContainer">
      <summary>
            Container class for summary information about a person (applicant)
            <link><href>classes/applicantPersonContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.OfficialFirstName">
      <summary>
        <type>String</type>
            Applicant First Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.OfficialMiddleName">
      <summary>
        <type>String</type>
            Applicant Middle Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.OfficialLastName">
      <summary>
        <type>String</type>
            Applicant Last Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.PreferredFirstName">
      <summary>
        <type>String</type>
            Applicant's preferred First Name - this is the first name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.PreferredMiddleName">
      <summary>
        <type>String</type>
            Applicant's preferred Middle Name - this is the middle name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.PreferredLastName">
      <summary>
        <type>String</type>
            Applicant's preferred Last Name - this is the last name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.SystemKey">
      <summary>
        <type>DateTime</type>
            Applicant's UW system key
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.StudentID">
      <summary>
        <type>String</type>
            Applicant's UW student ID (if exists)
            </summary>
    </member>
    <member name="P:applicants.Models.applicantPersonContainer.SlatePersonURL">
      <summary>
        <type>String</type>
            URL for this applicant in Slate
            </summary>
    </member>
    <member name="T:applicants.Models.applicantRootContainer">
      <summary>
      </summary>
    </member>
    <member name="P:applicants.Models.applicantRootContainer.Applicant">
      <summary>
      </summary>
    </member>
    <member name="T:applicants.Models.officialTranscriptContainer">
      <summary>
            Container class for data related to official degree transcripts
            <link><href>classes/officialTranscriptContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptName">
      <summary>
        <type>String</type>
            The filename of the uploaded official transcript file
            </summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptDocumentType">
      <summary>
        <type>String</type>
            The MIME type of the uploaded official transcript file (e.g., ""application/pdf")
            </summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptReceiveDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the official transcript was uploaded
            </summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptUpdateDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the official transcript was last updated
            </summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptViewerURL">
      <summary>
        <type>String</type>
            URL to view the uploaded official transcript in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.officialTranscriptContainer.OfficialTranscriptMaterialGUID">
      <summary>
        <type>Nullable GUID</type>
            Unique material GUID for the official transcript in Slate
            </summary>
    </member>
    <member name="T:applicants.Models.transcriptContainer">
      <summary>
            Container class for data related to unofficial and official transcripts for an application.
            <link><href>classes/transcriptContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.transcriptContainer.Unofficial">
      <summary>
            List of data related to unofficial transcripts for the application. <see cref="T:applicants.Models.unofficialTranscriptContainer" /></summary>
    </member>
    <member name="P:applicants.Models.transcriptContainer.Official">
      <summary>
            List of data related to unofficial transcripts for the application. <see cref="T:applicants.Models.officialTranscriptContainer" /></summary>
    </member>
    <member name="T:applicants.Models.unofficialTranscriptContainer">
      <summary>
            Container class for data related to unofficial degree transcripts
            <link><href>classes/unofficialTranscriptContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptName">
      <summary>
        <type>String</type>
            The filename of the uploaded unofficial transcript file
            </summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptDocumentType">
      <summary>
        <type>String</type>
            The MIME type of the uploaded unofficial transcript file (e.g., ""application/pdf")
            </summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptReceiveDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the unofficial transcript was uploaded
            </summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptUpdateDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the unofficial transcript was last updated
            </summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptViewerURL">
      <summary>
        <type>String</type>
            URL to view the uploaded unofficial transcript in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.unofficialTranscriptContainer.UnofficialTranscriptMaterialGUID">
      <summary>
        <type>Nullable GUID</type>
            Unique material GUID for the uploaded unofficial transcript in Slate
            </summary>
    </member>
    <member name="T:applicants.Models.facultyContainer">
      <summary>
            Container class for data related to the applicant's faculty selections
            <link><href>classes/facultyContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultyRank">
      <summary>
        <type>Integer</type>
            Indicates the rank of this faculty member relative to other faculty selections
            </summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultyName">
      <summary>
        <type>String</type>
            Faculty member name
            </summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultyWhy">
      <summary>
        <type>String</type>
            Reason applicant selected this faculty member
            </summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultyLikeToWorkWith">
      <summary>
        <type>String</type>
            Capacity in which the applicant would like to work with the faculty member
            </summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultyContacted">
      <summary>
        <type>Nullable boolean</type>
            Has applicant already contacted this faculty member?
            </summary>
    </member>
    <member name="P:applicants.Models.facultyContainer.FacultySelectedOrTypedIn">
      <summary>
        <type>String</type>
            Indicates whether the applicant selected the faculty member from a pre-defined list in Slate or typed the name in.
            </summary>
    </member>
    <member name="T:applicants.Models.unsubmittedPersonContainer">
      <summary>
            Container class for limited information related to an unsubmitted applicant
            <link><href>classes/unsubmittedPersonContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.OfficialFirstName">
      <summary>
        <type>String</type>
            Applicant First Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.OfficialMiddleName">
      <summary>
        <type>String</type>
            Applicant Middle Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.OfficialLastName">
      <summary>
        <type>String</type>
            Applicant Last Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.PreferredFirstName">
      <summary>
        <type>String</type>
            Applicant's preferred First Name - this is the first name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.PreferredMiddleName">
      <summary>
        <type>String</type>
            Applicant's preferred Middle Name - this is the middle name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.PreferredLastName">
      <summary>
        <type>String</type>
            Applicant's preferred Last Name - this is the last name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedPersonContainer.LastChangeDate">
      <summary>
        <type>DateTime</type>
            Date and time of the last change to applicant info
            </summary>
    </member>
    <member name="T:applicants.Models.unsubmittedDetailContainer">
      <summary>
            Container class for limited information related to an unsubmitted application
            <link><href>classes/unsubmittedDetailContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationID">
      <summary>
        <type>Integer</type>
            The Grad School-generated application ID. This is what will be in the SDB/EDW to match.
            (In sr_adm_appl, it's the appl_source_id.)
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.SlateApplicationReferenceID">
      <summary>
        <type>String</type>
            The Slate-generated application ID
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.SlateApplicationGUID">
      <summary>
        <type>GUID</type>
            The Slate-generated application GUID
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.CloneSourceGUID">
      <summary>
        <type>Nullable GUID</type>
            The Slate-generated application GUID for the original application 
            if this application was duplicated from another application.
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationYear">
      <summary>
        <type>Nullable integer</type>
            Year applying for
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationQuarter">
      <summary>
        <type>Nullable integer</type>
            Quarter applying for
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationType">
      <summary>
        <type>String (single character)</type>
            Single-letter code indicating the application type. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link><list type="table"><item><term>E</term><description>GNM</description></item><item><term>G</term><description>Graduate or Visiting Grad</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.SlatePersonReferenceID">
      <summary>
        <type>Integer</type>
            The Slate-generated ID for the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.Email">
      <summary>
        <type>String</type>
            Applicant email address (for communication related to this application)
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.DegreeIDApplication">
      <summary>
        <type>Integer</type>
            The DegreeID applicant is applying for. (This is the UW Graduate School-specific DegreeID.)
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.DegreeCodeApplication">
      <summary>
        <type>String</type>
            The DegreeCode applicant is applying for. 
            A composite string of the SDB degree/credential identifiers (campus, college, major, pathway, degree level, degree type)
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationLastChangeDate">
      <summary>
        <type>Nullable DateTime</type>
            The date and time of the last change made to the application
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationSubmitDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the application was submitted. 
            (Application is not uploaded to the SDB until the application fee is paid.)        
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.IsVisitingGrad">
      <summary>
        <type>Boolean</type>
            Is this a visiting grad application?
            </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedDetailContainer.ApplicationStartDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the application was started
            </summary>
    </member>
    <member name="T:applicants.Models.unsubmittedRootContainer">
      <summary>
      </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedRootContainer.UnsubmittedApplication">
      <summary>
      </summary>
    </member>
    <member name="T:applicants.Models.applicationRootContainer">
      <summary>
      </summary>
    </member>
    <member name="P:applicants.Models.applicationRootContainer.Application">
      <summary>
      </summary>
    </member>
    <member name="T:applicants.Models.applicationDetailContainer">
      <summary>
            Class containing detailed information about the application
            <link><href>classes/applicationDetailContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationID">
      <summary>
        <type>Integer</type>
            The Grad School-generated application ID. This is what will be in the SDB/EDW to match.
            (In sr_adm_appl, it's the appl_source_id.)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SlateApplicationReferenceID">
      <summary>
        <type>String</type>
            The Slate-generated application ID
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SlateApplicationGUID">
      <summary>
        <type>GUID</type>
            The Slate-generated application GUID
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.CloneSourceGUID">
      <summary>
        <type>Nullable GUID</type>
            The Slate-generated application GUID for the original application 
            if this application was duplicated from another application.
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationComplete">
      <summary>
        <type>String</type>
            "Yes" if the applicant has provided all required materials, otherwise "No".
            "Yes" corresponds to the "Awaiting Decision" or "Decided" status in Slate.
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.StatusSlate">
      <summary>
        <type>String</type>
            The status in Slate. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationFee">
      <summary>
        <type>Integer</type>
            The code of the payment type: 
            <list type="table"><item><term>1</term><description>Credit Card</description></item><item><term>3</term><description>Fee Waiver</description></item><item><term>6</term><description>GNM</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SDBApplicationNumber">
      <summary>
        <type>Nullable Integer</type>
            The SDB Application number
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationYear">
      <summary>
        <type>Nullable integer</type>
            Year applying for
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationQuarter">
      <summary>
        <type>Nullable integer</type>
            Quarter applying for
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.StatusSDBDate">
      <summary>
        <type>Nullable DateTime</type>
             The date status was last changed in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.StatusSDB">
      <summary>
        <type>Nullable byte</type>
            The applicant's status in the SDB. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationType">
      <summary>
        <type>String (single character)</type>
            Single-letter code indicating the application type. See: 
            <link><href>https://sites.uw.edu/gradslate/trainings/application-status-slate-mygrad-sdb-crosswalk/</href><text>Application Status: Slate / MyGrad / SDB Crosswalk</text></link><list type="table"><item><term>E</term><description>GNM</description></item><item><term>G</term><description>Graduate or Visiting Grad</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SlatePersonReferenceID">
      <summary>
        <type>Integer</type>
            The Slate-generated ID for the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Class">
      <summary>
        <type>Integer</type>
            The class of an application based on type: 
            <list type="table"><item><term>6</term><description>GNM</description></item><item><term>8</term><description>Graduate or Visiting Graduate</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Email">
      <summary>
        <type>String</type>
            Applicant email address (for communication related to this application)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.GPAComputed">
      <summary>
        <type>Nullable decimal</type>
            The applicant's computed GPA
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.GPARecent">
      <summary>
        <type>Nullable decimal</type>
            The applicant's recent GPA
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.DegreeIDApplication">
      <summary>
        <type>Integer</type>
            The DegreeID of the program applicant chose in Slate.  For the actual DegreeID in SDB, <see cref="T:applicants.Models.majorContainer" />.
            (This is the UW Graduate School-specific DegreeID.)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.DegreeCodeApplication">
      <summary>
        <type>String</type>
            The DegreeCode of the program applicant chose in Slate.  For the actual DegreeCode in SDB, <see cref="T:applicants.Models.majorContainer" />.
            A composite string of the SDB degree/credential identifiers (campus, college, major, pathway, degree level, degree type)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationLastChangeDate">
      <summary>
        <type>Nullable DateTime</type>
            The date and time of the last change made to the application
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.LastInstitutionCode">
      <summary>
        <type>String</type>
            The code for the last institution attended.
            <see cref="T:applicants.Controllers.lookupController" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.LastInstitutionType">
      <summary>
        <type>Nullable integer</type>
            The type of the last institution attended
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.LastInstitutionAttendedTo">
      <summary>
        <type>String</type>
            A string indicating the last year and month applicant attended the last institution.
            Format: 'YYYYMM'
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.NCRCode">
      <summary>
        <type>Nullable integer</type>
            New Continuing Returning Code 
            <list type="table"><item><term>0</term><description>Continuing</description></item><item><term>1</term><description>New Student</description></item><item><term>2</term><description>Former Student</description></item><item><term>3</term><description>New Acc-Cont</description></item><item><term>4</term><description>New Acc-Form</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.AEPRequired">
      <summary>
        <type>String</type>
            Academic English Language Program for Graduate students, which would require them to take 
            English language courses. This is a text representation of the req_esl_diag_test SDB/EDW values:
            <list type="table"><listheader><description>Description</description><term>SDB/EDW Value</term></listheader><item><description>Not-required (e.g. native English speaker)</description><term>0</term></item><item><description>Required</description><term>1</term></item><item><description>
                 Satisfied (e.g. demonstrated proficiency through acceptable English language test performance, 
                 degree from English instruction university, etc.)
              </description><term>2</term></item><item><description>
                 Exempt for some reason.
              </description><term>3</term></item></list>
            See: 
            <link><href>https://grad.uw.edu/policies/3-2-graduate-school-english-language-proficiency-requirements/</href><text>Graduate School Policy 3.2</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ClearedToTeach">
      <summary>
        <type>String</type>
            Is the applicant cleared to teach (be a TA)?
            Text representation of the req_speak SDB/EDW value for:
            <list type="table"><listheader><description>Description</description><term>SDB/EDW Value</term></listheader><item><description>Not-required (e.g. native English speaker)</description><term>0</term></item><item><description>Required</description><term>1</term></item><item><description>
                 Satisfied (e.g. demonstrated proficiency through acceptable English language test performance, 
                 degree from English instruction university, etc.)
              </description><term>2</term></item><item><description>
                 Exempt for some reason.
              </description><term>3</term></item></list>        
            See: 
            <link><href>https://grad.uw.edu/policies/5-2-conditions-of-appointment-for-tas-who-are-not-native-speakers-of-english/</href><text>Graduate School Policy 5.2</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Resident">
      <summary>
        <type>Integer</type>
        <list type="table">
          <item>
            <term>0</term>
            <description>Resident</description>
          </item>
          <item>
            <term>2</term>
            <description>Resident Immigrant</description>
          </item>
          <item>
            <term>3</term>
            <description>Nonresident Citizen</description>
          </item>
          <item>
            <term>4</term>
            <description>Nonresident Immigrant</description>
          </item>
          <item>
            <term>5</term>
            <description>Nonresident Student Visa</description>
          </item>
          <item>
            <term>6</term>
            <description>Noncitizen Other</description>
          </item>
        </list>
      </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SDBReject">
      <summary>
        <type>String</type>
            Was this application rejected by the SDB?
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SpecialProgram">
      <summary>
        <type>Nullable integer</type>
            See: 
            <link><href>https://studentdata.washington.edu/sdb-code-manual/student/sdb-special-program-codes/</href><text>SDB Special Program Codes</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ApplicationSubmitDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the application was submitted
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.PGEducation1">
      <summary>
        <type>String</type>
            First parent highest education level
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.PGEducation2">
      <summary>
        <type>String</type>
            Second parent highest education level
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.EnglishRequirementOption">
      <summary>
        <type>String</type>
            How the applicant will demonstrate English-language proficiency (if non-native speaker)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.ECDPaymentTime">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the Enrollment Confirmation Deposit was paid
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.IsConcurrent">
      <summary>
        <type>Boolean</type>
            Is the applicant pursuing a concurrent degree?
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.FirstGeneration">
      <summary>
        <type>Boolean</type>
            Is applicant first generation?
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.RequiredSpeaking">
      <summary>
        <type>Nullable integer</type>
            (AKA "req_speak") Is the applicant cleared to teach (be a TA)?
            Code value of the req_speak SDB/EDW value for:
            <list type="table"><listheader><term>SDB/EDW Value</term><description>Description</description></listheader><item><term>0</term><description>Not-required (e.g. native English speaker)</description></item><item><term>1</term><description>Required</description></item><item><term>2</term><description>
                 Satisfied (e.g. demonstrated proficiency through acceptable English language test performance, 
                 degree from English instruction university, etc.)
              </description></item><item><term>3</term><description>
                 Exempt for some reason.
              </description></item></list>        
            See: 
            <link><href>https://grad.uw.edu/policies/5-2-conditions-of-appointment-for-tas-who-are-not-native-speakers-of-english/</href><text>Graduate School Policy 5.2</text></link><callout>
                Please note: we're still working on getting this property populated in GAWS. Currently, it's always null.
                After the fix, it will be an integer (not nullable).
            </callout></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.VisaType">
      <summary>
        <type>String</type>
            The applicant's visa type
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.IsVisitingGrad">
      <summary>
        <type>Boolean</type>
            Is this a visiting grad application?
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SlateApplicationURL">
      <summary>
        <type>String</type>
            URL for this application in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.SlateReaderURL">
      <summary>
        <type>String</type>
            URL to view information for this applicant in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.OperationalReviewNotes">
      <summary>
        <type>String</type>
            Notes from the operational review (null if empty)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Interests">
      <summary>
            List of applicant interests.
            <see cref="T:applicants.Models.interestContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Faculty">
      <summary>
            List of faculty members provided by the applic ant.
            <see cref="T:applicants.Models.facultyContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Majors">
      <summary>
            List of majors applying for.
            <see cref="T:applicants.Models.majorContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Recommendations">
      <summary>
            List of recommenders supplied by the applicant.
            <see cref="T:applicants.Models.recommenderContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Materials">
      <summary>
            List of materials supplied by the applicant.
            <see cref="T:applicants.Models.materialContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationDetailContainer.Questions">
      <summary>
            List of program-specific questions and answers.
            <see cref="T:applicants.Models.applicationQuestionContainer" /></summary>
    </member>
    <member name="T:applicants.Models.personAddressContainer">
      <summary>
            Container class for address information related to an applicant
            <link><href>classes/personAddressContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressTypeName">
      <summary>
        <type>String</type>
            The address type (e.g., Permanent, Local)
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressLine1">
      <summary>
        <type>String</type>
            First line of the street address
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressLine2">
      <summary>
        <type>String</type>
            Second line of the street address (if applicable - null if blank)
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressCity">
      <summary>
        <type>String</type>
            City name
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressRegion">
      <summary>
        <type>String</type>
            The state, province, or equivalent. If a state, returns the two-letter abbreviation
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.StateAbbreviation">
      <summary>
        <type>String</type>
            The state abbreviation (if applicable - null if blank)
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressCountryNameSDB">
      <summary>
        <type>String</type>
            Country as recognized by the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressCountryNameGENCShort">
      <summary>
        <type>String</type>
            Country GENC code
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressCountryNameISO3166">
      <summary>
        <type>String</type>
            Country ISO3166 code
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressZip5">
      <summary>
        <type>String</type>
            5 digit zip code
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressZip4">
      <summary>
        <type>String</type>
            4 digit zip extension (null if blank)
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressPostalCode">
      <summary>
        <type>String</type>
            Postal code (international, null if blank)
            </summary>
    </member>
    <member name="P:applicants.Models.personAddressContainer.AddressLastChangeDate">
      <summary>
        <type>DateTime</type>
            Date and time the address was last updated
            </summary>
    </member>
    <member name="T:applicants.Models.personContactContainer">
      <summary>
            Container class for contact information related to an applicant
            <link><href>classes/personContactContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.personContactContainer.Phone">
      <summary>
        <see cref="T:applicants.Models.personPhoneContainer" />
      </summary>
    </member>
    <member name="P:applicants.Models.personContactContainer.Address">
      <summary>
        <see cref="T:applicants.Models.personAddressContainer" />
      </summary>
    </member>
    <member name="T:applicants.Models.programRootContainer">
      <summary>
      </summary>
    </member>
    <member name="P:applicants.Models.programRootContainer.Program">
      <summary>
      </summary>
    </member>
    <member name="T:applicants.Models.testScoreContainer">
      <summary>
            Container class for test score information
            <link><href>classes/testScoreContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.testScoreContainer.TestComponent">
      <summary>
        <type>String</type>
            The subject area for these scores (e.g., "Verbal", "Quantitative", "Overall")
            </summary>
    </member>
    <member name="P:applicants.Models.testScoreContainer.TestScore">
      <summary>
        <type>Decimal</type>
            The score as reported by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.testScoreContainer.TestPercentile">
      <summary>
        <type>Integer</type>
            The percentile as reported by the applicant
            </summary>
    </member>
    <member name="T:applicants.Models.unsubmittedContainer">
      <summary>
            Container class for limited application and applicant details for an unsubmitted application
            <link><href>classes/unsubmittedContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.unsubmittedContainer.Application">
      <summary>
        <see cref="T:applicants.Models.unsubmittedDetailContainer" />
      </summary>
    </member>
    <member name="P:applicants.Models.unsubmittedContainer.Person">
      <summary>
        <see cref="T:applicants.Models.unsubmittedPersonContainer" />
      </summary>
    </member>
    <member name="T:applicants.Models.applicantContainer">
      <summary>
            Container class for submitted applicant information
            <link><href>classes/applicantContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicantContainer.ApplicationDetail">
      <summary>
            An object containing summary information about the applicant's application. <see cref="T:applicants.Models.applicantDetailContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicantContainer.PersonDetail">
      <summary>
            An object containing summary information about the applicant. <see cref="T:applicants.Models.applicantPersonContainer" /></summary>
    </member>
    <member name="T:applicants.Models.applicationContainer">
      <summary>
            Container class for applications
            <link><href>classes/applicationContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationContainer.ApplicationDetail">
      <summary>
            Data related to the application.
            <see cref="T:applicants.Models.applicationDetailContainer" /></summary>
    </member>
    <member name="P:applicants.Models.applicationContainer.Person">
      <summary>
            Data related to the applicant.
            <see cref="T:applicants.Models.personContainer" /></summary>
    </member>
    <member name="T:applicants.Models.personContainer">
      <summary>
            Container class for information about a person (applicant)
            <link><href>classes/personContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.personContainer.SlatePersonReferenceID">
      <summary>
        <type>String</type>
            The Slate-generated ID for the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.OfficialFirstName">
      <summary>
        <type>String</type>
            Applicant First Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.OfficialMiddleName">
      <summary>
        <type>String</type>
            Applicant Middle Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.OfficialLastName">
      <summary>
        <type>String</type>
            Applicant Last Name on official documentation
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.PreferredFirstName">
      <summary>
        <type>String</type>
            Applicant's preferred First Name - this is the first name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.PreferredMiddleName">
      <summary>
        <type>String</type>
            Applicant's preferred Middle Name - this is the middle name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.PreferredLastName">
      <summary>
        <type>String</type>
            Applicant's preferred Last Name - this is the last name that should 
            be used in most cases
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.Pronouns">
      <summary>
        <type>String</type>
            The pronouns used by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.Sex">
      <summary>
        <type>String (single character)</type>
            Single letter indicating applicant's sex
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.GenderOptionDescription">
      <summary>
        <type>String</type>
            Applicant's gender
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.GenderDescription">
      <summary>
        <type>String</type>
            Additional detail regarding applicant's gender
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.FormerLastName1">
      <summary>
        <type>String</type>
            Former last name 1
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.FormerFirstName1">
      <summary>
        <type>String</type>
            Former first name 1
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.FormerLastName2">
      <summary>
        <type>String</type>
            Former last name 2
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.FormerFirstName2">
      <summary>
        <type>String</type>
            Former first name 2
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.Email">
      <summary>
        <type>String</type>
            Applicant email
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.BirthCity">
      <summary>
        <type>String</type>
            City of birth
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.BirthCountryNameSDB">
      <summary>
        <type>String</type>
            Country of birth used in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.CitizenshipCountryNameSDB">
      <summary>
        <type>String</type>
            Citizenship country used in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.BirthCountryNameGENCShort">
      <summary>
        <type>String</type>
            Country of birth - GENC code
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.BirthCountryNameISO3166">
      <summary>
        <type>String</type>
            Country of birth - ISO3166 code
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.CitizenshipCountryNameGENCShort">
      <summary>
            Citizenship country - GENC code
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.CitizenshipCountryNameISO3166">
      <summary>
        <type>String</type>
            Citizenship country - ISO3166 code
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.NativeEnglishSpeaker">
      <summary>
        <type>String</type>
            Is the applicant a native English speaker?
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.USCitizenStatus">
      <summary>
        <type>Boolean</type>
            Code indicating the applicant's US citizenship status
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.Veteran">
      <summary>
        <type>String</type>
            Code indicating the applicant's US military veteran status
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.LastChangeDate">
      <summary>
        <type>Nullable integer</type>
            Date and time of the last change to applicant info
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.SystemKey">
      <summary>
        <type>DateTime</type>
            Applicant's UW system key
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.SSNLast4">
      <summary>
        <type>Nullable integer</type>
            Last 4 digits of the applicant's Social Security number
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.StudentID">
      <summary>
        <type>String</type>
            Applicant's UW student ID (if exists)
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.SlatePersonURL">
      <summary>
        <type>String</type>
            URL for this applicant in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.personContainer.Contact">
      <summary>
            Object containing contact information for the applicant.
            <see cref="T:applicants.Models.personContactContainer" /></summary>
    </member>
    <member name="P:applicants.Models.personContainer.Education">
      <summary>
            Array of objects containing previous education information for the applicant.
            <see cref="T:applicants.Models.degreeContainer" /></summary>
    </member>
    <member name="P:applicants.Models.personContainer.Employment">
      <summary>
            Array of objects containing employment information for the applicant.
            <see cref="T:applicants.Models.employerContainer" /></summary>
    </member>
    <member name="P:applicants.Models.personContainer.Tests">
      <summary>
            Array of objects containing test information for the applicant.
            Note: these are specifically the applicant's self-reported scores.  
            Official scores will be available in EDW.
            <see cref="T:applicants.Models.testContainer" /></summary>
    </member>
    <member name="T:applicants.Models.degreeContainer">
      <summary>
            Container class for data related to a degree held by the applicant
            <link><href>classes/degreeContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.EducationGUID">
      <summary>
        <type>GUID</type>
            Unique GUID referencing this data in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.PESCCode">
      <summary>
        <type>String</type>
            The PESC Global Education Organization Code
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.SDBInstitutionCode">
      <summary>
        <type>Integer</type>
            Institution code in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionName">
      <summary>
        <type>String</type>
            Name of the institution
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.AttendedFromYear">
      <summary>
        <type>Integer</type>
            Year applicant started program at this institution
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.AttendedFromMonth">
      <summary>
        <type>Integer</type>
            Month applicant started program at this institution
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.AttendedToYear">
      <summary>
        <type>Integer</type>
            Year applicant completed program at this institution
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.AttendedToMonth">
      <summary>
        <type>Integer</type>
            Month applicant completed program at this institution
            
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeEarnedYear">
      <summary>
        <type>Nullable integer</type>
            Year degree was earned (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeEarnedMonth">
      <summary>
        <type>Nullable integer</type>
            Month degree was earned (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.Major">
      <summary>
        <type>String</type>
            Name of the applicant's major (does not correspond the the abbreviated major codes used at UW)
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.GPAMajor">
      <summary>
        <type>Nullable decimal</type>
            Applicant's GPA in courses related to this major
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.GPA">
      <summary>
        <type>Nullable decimal</type>
            Applicant's overall GPA
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.GPACalculated">
      <summary>
        <type>Nullable decimal</type>
            Typically represents where GEMS as performed a calculation of the applicant's GPA 
            from the supplied degree transcripts.
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionLocationRegion">
      <summary>
        <type>String</type>
            State, province, or equivalent. If a US state or Canadian province, will be the 2 character abbreviation
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionLocation">
      <summary>
        <type>String</type>
            Either "US" or "Other"
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionState">
      <summary>
        <type>String</type>
            The US or Canadian state/province abbreviation, if applicable
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionCountryNameSDB">
      <summary>
        <type>String</type>
            The institution country name in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionCountryNameISO3166">
      <summary>
        <type>String</type>
            The ISO3166 country name
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.InstitutionCountryNameGENCShort">
      <summary>
        <type>String</type>
            The GENC short country name
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeType">
      <summary>
        <type>String</type>
            Degree type (BS, MS, or other as entered by the applicant)
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeReported">
      <summary>
        <type>String</type>
            Degree reported by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeTranscriptRequired">
      <summary>
        <type>Nullable boolean</type>
            When department makes an offer, they pick which official transcripts are required
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.DegreeTranscriptSufficient">
      <summary>
        <type>Nullable boolean</type>
            GEMS reviews official transcripts of offered applicants and marks them sufficient
            </summary>
    </member>
    <member name="P:applicants.Models.degreeContainer.Transcripts">
      <summary>
            Data related to unofficial and official transcripts for the application.
            <see cref="T:applicants.Models.transcriptContainer" /></summary>
    </member>
    <member name="T:applicants.Models.employerContainer">
      <summary>
            Container class for data related to an employer
            <link><href>classes/employerContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentGUID">
      <summary>
        <type>GUID</type>
            GUID identifying this employment info for the applicant in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerName">
      <summary>
        <type>String</type>
            The name of the employer
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployeeTitle">
      <summary>
        <type>String</type>
            The applicant's title for this position
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentStartDate">
      <summary>
        <type>DateTime</type>
            The applicant's start date for this position
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentEndDate">
      <summary>
        <type>Nullable DateTime</type>
            Last employment date for this position (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerCity">
      <summary>
        <type>String</type>
            The employer's city
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerRegion">
      <summary>
        <type>String</type>
            The employer's state, province, or equivalent (2-letter abbreviation if US state or Canadian province)
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerCountryNameSDB">
      <summary>
        <type>String</type>
            The employer's country name in the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerCountryNameISO3166">
      <summary>
        <type>String</type>
            The ISO3166 country name for the employer
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmployerCountryNameGENCShort">
      <summary>
        <type>String</type>
            The short GENC country name for the employer
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentPaidType">
      <summary>
        <type>String</type>
            Payment type (Paid, Unpaid, or null)
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentDescription">
      <summary>
        <type>String</type>
            Applicant's explanation of the type of work performed
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentTotalHoursInRole">
      <summary>
        <type>Nullable decimal</type>
            The total hours applicant worked in this position
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentHoursPerWeek">
      <summary>
        <type>String</type>
            Weekly hours applicant worked in this position (free text)
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.EmploymentRank">
      <summary>
        <type>Nullable integer</type>
            Order of this position as entered by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.employerContainer.GeneticCounselingExperience">
      <summary>
        <type>String</type>
            Type of genetic counseling experience in this position, if applicable. One of the following:
            <list type="bullet"><item><description>Advocacy Experience</description></item><item><description>Counseling Experience</description></item><item><description>Coursework Experience</description></item><item><description>Research Experience</description></item><item><description>Shadowing Experience</description></item><item><description>Teaching Experience</description></item><item><description>Volunteer Experience</description></item><item><description>Other Experience</description></item></list></summary>
    </member>
    <member name="T:applicants.Models.interestContainer">
      <summary>
            Container class for data related to the applicant-provided interests
            <link><href>classes/interestContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.interestContainer.InterestRank">
      <summary>
        <type>Nullable integer</type>
            Indicates the rank of this interest related to other interests
            </summary>
    </member>
    <member name="P:applicants.Models.interestContainer.Interest">
      <summary>
        <type>String</type>
            Description of the interest
            </summary>
    </member>
    <member name="P:applicants.Models.interestContainer.InterestCreatedDate">
      <summary>
        <type>DateTime</type>
            Date and time the interest was added by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.interestContainer.InterestUpdatedDate">
      <summary>
        <type>DateTime</type>
            Date and time the interest was last updated by the applicant
            </summary>
    </member>
    <member name="T:applicants.Models.materialContainer">
      <summary>
            Container class for data related to uploaded materials
            <link><href>classes/materialContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialGUID">
      <summary>
        <type>GUID</type>
            Slate-generated GUID for the item
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialName">
      <summary>
        <type>String</type>
            The type of the material item (i.e., the field label)
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialContentType">
      <summary>
        <type>String</type>
            The mime type of the item (e.g., application/pdf)
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialFileName">
      <summary>
        <type>String</type>
            The uploaded filename (format: [Trimmed MaterialName]-[SlatePersonReferenceID]-[SlateApplicationReferenceID].[EXT])
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialViewerURL">
      <summary>
        <type>String</type>
            URL to view the uploaded file in Slate. Note that it is possible from the URL viewer to 
            download the file (Print, then Save in the viewer).
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialCreateDate">
      <summary>
        <type>DateTime</type>
            Date and time the file was originally uploaded
            </summary>
    </member>
    <member name="P:applicants.Models.materialContainer.MaterialUpdateDate">
      <summary>
        <type>DateTime</type>
            Date and time the file was last updated
            </summary>
    </member>
    <member name="T:applicants.Models.majorContainer">
      <summary>
            Container class for data related to the program the applicant is applying for
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.DegreeIndex">
      <summary>
        <type>Integer</type>
            Order in which to display the degree
            <link><href>classes/majorContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.majorContainer.DegreeID">
      <summary>
        <type>Integer</type>
            The numeric DegreeID. (This is the UW Graduate School-specific DegreeID.)
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.DegreeCode">
      <summary>
        <type>String</type>
            The degree code.
            A composite string of the SDB degree/credential identifiers (campus, college, major, pathway, degree level, degree type)
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.ApplicationDegreeFlag">
      <summary>
        <type>Boolean</type>
             Represents that this is the degree code that the application was created. 
             It might be different than other degree codes, for example a degree code 
             that is offered (e.g. single application, multiple degree pathways sorted 
             at review/offer time) or a concurrent degree code that needs to be 
             represented on the application for proper student statuses in the SDB.  
             Allows us to track what was the original degree code of the application. 
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.CampusCode">
      <summary>
        <type>Integer</type>
            The numeric campus code for the program.
            <list type="table"><listheader><term>Code</term><description>Name</description></listheader><item><term>0</term><description>Seattle</description></item><item><term>1</term><description>Bothell</description></item><item><term>2</term><description>Tacoma</description></item></list></summary>
    </member>
    <member name="P:applicants.Models.majorContainer.CollegeCode">
      <summary>
        <type>String</type>
            The college code for the program.
            <list type="table"><listheader><term>Code</term><description>Name</description></listheader><item><term>A</term><description>Interdisciplinary Undergraduate Programs</description></item><item><term>B</term><description>COLLEGE OF BUILT ENVIRONMENTS           </description></item><item><term>C</term><description>COLLEGE OF ARTS &amp; SCIENCES              </description></item><item><term>D</term><description>COLLEGE OF THE ENVIRONMENT              </description></item><item><term>E</term><description>FOSTER SCHOOL OF BUSINESS               </description></item><item><term>H</term><description>COLLEGE OF EDUCATION                    </description></item><item><term>J</term><description>COLLEGE OF ENGINEERING                  </description></item><item><term>K</term><description>College of Ocean &amp; Fishery Sciences</description></item><item><term>L</term><description>College of Forest Resources</description></item><item><term>M</term><description>SCHOOL OF PUBLIC HEALTH                 </description></item><item><term>N</term><description>SCHOOL OF NURSING                       </description></item><item><term>O</term><description>INTERSCHOOL OR INTERCOLLEGE PROGRAMS    </description></item><item><term>P</term><description>SCHOOL OF PHARMACY                      </description></item><item><term>Q</term><description>EVANS SCHOOL OF PUB POL &amp; GOV           </description></item><item><term>R</term><description>INTERDISCIPLINARY GRADUATE PROGRAMS     </description></item><item><term>S</term><description>THE INFORMATION SCHOOL                  </description></item><item><term>T</term><description>SCHOOL OF SOCIAL WORK                   </description></item><item><term>U</term><description>SCHOOL OF DENTISTRY                     </description></item><item><term>V</term><description>UW BOTHELL                              </description></item><item><term>X</term><description>SCHOOL OF LAW                           </description></item><item><term>Y</term><description>SCHOOL OF MEDICINE                      </description></item><item><term>Z</term><description>UW TACOMA                               </description></item></list></summary>
    </member>
    <member name="P:applicants.Models.majorContainer.Major">
      <summary>
        <type>String</type>
            The major abbreviation for the program
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.Pathway">
      <summary>
        <type>Integer</type>
            The pathway for the major
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.DegreeLevel">
      <summary>
        <type>Integer</type>
            The degree level
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.DegreeType">
      <summary>
        <type>Integer</type>
            The degree type
            </summary>
    </member>
    <member name="P:applicants.Models.majorContainer.Evening">
      <summary>
        <type>Boolean</type>
            Is this an evening program?
            </summary>
    </member>
    <member name="T:applicants.Models.programContainer">
      <summary>
            Container class for information regarding a program in Slate
            <link><href>classes/programContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.programContainer.DegreeID">
      <summary>
        <type>Integer</type>
            The numeric DegreeID. (This is the UW Graduate School-specific DegreeID.)
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.DegreeCode">
      <summary>
        <type>String</type>
            Alphanumeric degree code.
            A composite string of the SDB degree/credential identifiers (campus, college, major, pathway, degree level, degree type)
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.CampusCode">
      <summary>
        <type>Integer</type>
            The numeric campus code for the degree. <see cref="T:applicants.Models.majorContainer" /> for more info.
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.CollegeCode">
      <summary>
        <type>String</type>
            The college code for the degree. <see cref="T:applicants.Models.majorContainer" /> for more info.
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.MajorCode">
      <summary>
        <type>String</type>
            Major abbreviation
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.Pathway">
      <summary>
        <type>Integer</type>
            Pathway for the program
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.DegreeLevel">
      <summary>
        <type>Integer</type>
            Degree level for the program
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.DegreeType">
      <summary>
        <type>Integer</type>
            Degree type
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.SlateProgramMarketingName">
      <summary>
        <type>String</type>
            The publicly-viewable name for the program
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.ProgramStatus">
      <summary>
        <type>String</type>
            The current status of the program (e.g., "Active")
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.ProgramURL">
      <summary>
        <type>String</type>
            Public website URL for the program
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.SlateProgramURL">
      <summary>
        <type>String</type>
            URL for the program information in Slate 
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.SlateProgramVisitingGradURL">
      <summary>
        <type>String</type>
            URL for the Visiting Grad program information in Slate (if applicable). Null if empty.
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.SlateProgramLastUpdate">
      <summary>
        <type>DateTime</type>
            Date and time the program was last updated in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.programContainer.SubmittedApplications">
      <summary>
            An array of submittedApplicationContainer objects (<see cref="T:applicants.Models.submittedApplicationContainer" />). Null if no applications have been submitted
            </summary>
    </member>
    <member name="T:applicants.Models.submittedApplicationContainer">
      <summary>
            Container class for summary data related to applications submitted for a program for a specific year and quarter
            </summary>
    </member>
    <member name="P:applicants.Models.submittedApplicationContainer.Year">
      <summary>
        <type>Integer</type>
            Quarter Year
            </summary>
    </member>
    <member name="P:applicants.Models.submittedApplicationContainer.Quarter">
      <summary>
        <type>Integer</type>
            Quarter (numeric)
            </summary>
    </member>
    <member name="P:applicants.Models.submittedApplicationContainer.SubmittedCount">
      <summary>
        <type>Integer</type>
            Number of applications submitted for this program for this quarter
            </summary>
    </member>
    <member name="P:applicants.Models.submittedApplicationContainer.GAWSuri">
      <summary>
        <type>String</type>
            URL to view individual applicants for this program for this quarter
            </summary>
    </member>
    <member name="T:applicants.Models.recommenderContainer">
      <summary>
            Container class for recommender data
            <link><href>classes/recommenderContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.SlateRecommendationGUID">
      <summary>
        <type>GUID</type>
            Slate-generated GUID for the recommender
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecOrganization">
      <summary>
        <type>String</type>
            Recommender organization
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecPrefix">
      <summary>
        <type>String</type>
            Recommender prefix
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecFirst">
      <summary>
        <type>String</type>
            Recommender first name
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecMiddle">
      <summary>
        <type>String</type>
            Recommender middle name
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecLast">
      <summary>
        <type>String</type>
            Recommender last name
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecTitle">
      <summary>
        <type>String</type>
            Recommender job title
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecPhone">
      <summary>
        <type>String</type>
            Recommender phone number
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecEmail">
      <summary>
        <type>String</type>
            Recommender email address
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecCity">
      <summary>
        <type>String</type>
            Recommender city
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecRegion">
      <summary>
        <type>String</type>
            Recommender region
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecPostal">
      <summary>
        <type>String</type>
            Recommender postal code 
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecCountryNameSDB">
      <summary>
        <type>String</type>
            Recommender country SDB code
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecCountryNameISO3166">
      <summary>
        <type>String</type>
            Recommender country ISO3166 code
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecCountryNameGENCShort">
      <summary>
        <type>String</type>
            Recommender country GENC code
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecRelationship">
      <summary>
        <type>String</type>
            Relationship to applicant
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecRequestOpenedDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time applicant entered the recommendation request into Slate
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecSubmittedDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the recommendation was submitted by the recommender
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecType">
      <summary>
        <type>String</type>
            The recommender type (not currently used)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecAdmissionRecommendation">
      <summary>
        <type>String</type>
            Recommender's overall recommendation for the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.Comments">
      <summary>
        <type>String</type>
            Recommender comments
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.WaiverResponse">
      <summary>
        <type>Boolean</type>
            Did the applicant waive the right to view the recommendation?
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.BuckleyAmendmentWaiverSignature">
      <summary>
        <type>String</type>
            (Not currently used)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecDecline">
      <summary>
        <type>Nullable boolean</type>
            Did the recommender decline to answer? (Null if no response yet.)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankAcademic">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's academic performance
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankAnalyticalAbility">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's analytical ability
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankCollaboration">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's collaboration skills
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankCommunication">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's communication skills
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankCreativity">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's creativity
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankCulturalCompetence">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's cultural competence
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankIndependence">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's ability to work independently
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankIntegrity">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's integrity
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankIntelligence">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's intelligence
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankJudgementReadiness">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's judgement 
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankLeadership">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's leadership skills
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankKnowledgeOfField">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's knowledge of the area of study they're pursuing
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankMotivation">
      <summary>
        <type>Nullable integer</type>
            Recommender's ranking of the applicant's motivation
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankProfessionalism">
      <summary>
        <type>String</type>
            Recommender's ranking of the applicant's professionalism
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RankOverall">
      <summary>
        <type>String</type>
            Recommender's overall ranking of the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.InternshipSettingDescription">
      <summary>
        <type>String</type>
            If the applicant was in a relevant internship that the recommender 
            is responding to, a description of that internship by the recommender
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.HowLongKnownApplicant">
      <summary>
        <type>String</type>
            How long the recommender has known the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.HowWellKnowApplicant">
      <summary>
        <type>String</type>
            How well the recommender knows the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.CapacityKnowApplicant">
      <summary>
        <type>String</type>
            In what capacity does the recommender know the applicant?
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.CapacityKnowApplicantOther">
      <summary>
        <type>String</type>
            'Other' response for the capacity question
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecommenderIndustry">
      <summary>
        <type>String</type>
            The recommender's industry
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.ChildrenAgesWhomApplicantWorkedWith">
      <summary>
        <type>String</type>
            Ages of the children with whom the applicant has worked (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.NatureApplicantWorkWithChildren">
      <summary>
        <type>String</type>
            Nature of the applicant's work with children (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.TotalHoursWorkWithChildrenInSettingPast5Years">
      <summary>
        <type>String</type>
            Time the applicant has spent working with children in the last 5 years (if applicable)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecFileName">
      <summary>
        <type>String</type>
            Uploaded recommendation letter file
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecContentType">
      <summary>
        <type>String</type>
            Content type of the uploaded recommendation letter file
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecUploadDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the recommendation letter file was uploaded
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecLastUpdateDate">
      <summary>
        <type>Nullable DateTime</type>
            Date and time the recommendation letter file was last updated
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecViewerURL">
      <summary>
        <type>String</type>
            URL for the uploaded recommendation letter (in Slate)
            </summary>
    </member>
    <member name="P:applicants.Models.recommenderContainer.RecommendationMaterialGUID">
      <summary>
        <type>Nullable GUID</type>
            Unique material GUID for the recommendation in Slate
            </summary>
    </member>
    <member name="T:applicants.Models.applicationQuestionContainer">
      <summary>
            Container class for application question data
            <link><href>classes/applicationQuestionContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.applicationQuestionContainer.QuestionFieldNameID">
      <summary>
        <type>String</type>
            A unique string identifier for this question in Slate
            </summary>
    </member>
    <member name="P:applicants.Models.applicationQuestionContainer.QuestionCategory">
      <summary>
        <type>String</type>
            Identifies the school or campus associated with this question (e.g., 'Public Health', 'Interschool', 'Tacoma', etc.)
            </summary>
    </member>
    <member name="P:applicants.Models.applicationQuestionContainer.QuestionLabel">
      <summary>
        <type>String</type>
            The question being asked
            </summary>
    </member>
    <member name="P:applicants.Models.applicationQuestionContainer.QuestionAnswer">
      <summary>
        <type>String</type>
            The applicant's answer
            </summary>
    </member>
    <member name="T:applicants.Models.testContainer">
      <summary>
            Container class for data relating to a test completed by the applicant
            <link><href>classes/testContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.testContainer.TestKey">
      <summary>
        <type>String</type>
            Key identifying the test instance
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.SDBTestCode">
      <summary>
        <type>String</type>
            Test code for the SDB
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.SDBTestTypeName">
      <summary>
        <type>String</type>
            Test name in the SDB (e.g., "GRE", "GMAT", etc.)
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.SlateTestID">
      <summary>
        <type>String</type>
            ID of the test type in Slate (
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.SlateTestName">
      <summary>
        <type>String</type>
            Test code in Slate (e.g., "GRE", "GMAT", etc.)
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.SlateTestSubTypeCode">
      <summary>
        <type>String</type>
            Used for some test types, provides more granular information about the test type
            (example: for GRE Subject tests, the SlateTestSubTypeCode might be "COMPUT SCI", "BIOLOGY", etc.)
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.TestDate">
      <summary>
        <type>Nullable DateTime</type>
            Date the test was taken
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.TestEnteredDate">
      <summary>
        <type>DateTime</type>
            Date the test was entered in Slate by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.testContainer.Scores">
      <summary>
            An array of testScoreContainer objects.
            <see cref="T:applicants.Models.testScoreContainer" /></summary>
    </member>
    <member name="T:applicants.Models.personPhoneContainer">
      <summary>
            Container class for data related to an applicant phone number
            <link><href>classes/personPhoneContainer.htm</href><text>(C# class definition)</text></link></summary>
    </member>
    <member name="P:applicants.Models.personPhoneContainer.PhoneRank">
      <summary>
        <type>Integer</type>
            Order as entered by the applicant
            </summary>
    </member>
    <member name="P:applicants.Models.personPhoneContainer.PhoneNumber">
      <summary>
        <type>String</type>
            The phone number (including country code)
            </summary>
    </member>
    <member name="P:applicants.Models.personPhoneContainer.PhoneType">
      <summary>
        <type>String</type>
            Type of phone (Mobile, Home, or Work)
            </summary>
    </member>
    <member name="P:applicants.Models.personPhoneContainer.PhoneLastChangeDate">
      <summary>
        <type>DateTime</type>
            Date and time this phone information was last changed
            </summary>
    </member>
  </members>
</doc>