MyApp

<back to all web services

UpdateJobApplication

Talent
#![allow(
    dead_code,
    non_camel_case_types,
    non_snake_case,
    clippy::upper_case_acronyms
)]

use serde::{Deserialize, Serialize};
use serde_json::Value;
use servicestack::*;
use std::collections::HashMap;

#[derive(Serialize, Deserialize, Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub enum EmploymentType {
    #[default]
    #[serde(rename = "FullTime")]
    FullTime,
    #[serde(rename = "PartTime")]
    PartTime,
    #[serde(rename = "Casual")]
    Casual,
    #[serde(rename = "Contract")]
    Contract,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct Job {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    pub title: String,
    #[serde(rename = "employmentType")]
    pub employment_type: EmploymentType,
    pub company: String,
    pub location: String,
    #[serde(rename = "salaryRangeLower")]
    pub salary_range_lower: i32,
    #[serde(rename = "salaryRangeUpper")]
    pub salary_range_upper: i32,
    pub description: String,
    pub applications: Vec<JobApplication>,
    pub closing: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct Contact {
    pub id: i32,
    // Computed
    #[serde(rename = "displayName")]
    pub display_name: String,
    #[serde(rename = "profileUrl")]
    pub profile_url: String,
    #[serde(rename = "firstName")]
    pub first_name: String,
    #[serde(rename = "lastName")]
    pub last_name: String,
    #[serde(rename = "salaryExpectation")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub salary_expectation: Option<i32>,
    #[serde(rename = "jobType")]
    pub job_type: String,
    #[serde(rename = "availabilityWeeks")]
    pub availability_weeks: i32,
    #[serde(rename = "preferredWorkType")]
    pub preferred_work_type: EmploymentType,
    #[serde(rename = "preferredLocation")]
    pub preferred_location: String,
    pub email: String,
    pub phone: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub skills: Option<Vec<String>>,
    pub about: String,
    pub applications: Vec<JobApplication>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct AppUser {
    pub id: String,
    #[serde(rename = "firstName")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub first_name: Option<String>,
    #[serde(rename = "lastName")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub last_name: Option<String>,
    #[serde(rename = "displayName")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub display_name: Option<String>,
    #[serde(rename = "profileUrl")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub profile_url: Option<String>,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct JobApplicationComment {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    // References(typeof(AppUser))
    #[serde(rename = "appUserId")]
    pub app_user_id: String,
    #[serde(rename = "appUser")]
    pub app_user: AppUser,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    pub comment: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]
pub enum JobApplicationStatus {
    #[default]
    #[serde(rename = "Applied")]
    Applied,
    #[serde(rename = "PhoneScreening")]
    PhoneScreening,
    #[serde(rename = "PhoneScreeningCompleted")]
    PhoneScreeningCompleted,
    #[serde(rename = "Interview")]
    Interview,
    #[serde(rename = "InterviewCompleted")]
    InterviewCompleted,
    #[serde(rename = "Offer")]
    Offer,
    #[serde(rename = "Disqualified")]
    Disqualified,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct JobApplicationAttachment {
    pub id: i32,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    #[serde(rename = "fileName")]
    pub file_name: String,
    #[serde(rename = "filePath")]
    pub file_path: String,
    #[serde(rename = "contentType")]
    pub content_type: String,
    #[serde(rename = "contentLength")]
    pub content_length: i64,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct JobApplicationEvent {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    // References(typeof(AppUser))
    #[serde(rename = "appUserId")]
    pub app_user_id: String,
    #[serde(rename = "appUser")]
    pub app_user: AppUser,
    pub description: String,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub status: Option<JobApplicationStatus>,
    #[serde(rename = "eventDate")]
    pub event_date: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct PhoneScreen {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    // References(typeof(AppUser))
    #[serde(rename = "appUserId")]
    pub app_user_id: String,
    #[serde(rename = "appUser")]
    pub app_user: AppUser,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    #[serde(rename = "applicationStatus")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub application_status: Option<JobApplicationStatus>,
    pub notes: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct Interview {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    #[serde(rename = "bookingTime")]
    pub booking_time: String,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    // References(typeof(AppUser))
    #[serde(rename = "appUserId")]
    pub app_user_id: String,
    #[serde(rename = "appUser")]
    pub app_user: AppUser,
    #[serde(rename = "applicationStatus")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub application_status: Option<JobApplicationStatus>,
    pub notes: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct JobOffer {
    #[serde(flatten)]
    pub audit_base: AuditBase,
    pub id: i32,
    #[serde(rename = "salaryOffer")]
    pub salary_offer: i32,
    pub currency: String,
    // References(typeof(JobApplication))
    #[serde(rename = "jobApplicationId")]
    pub job_application_id: i32,
    // References(typeof(AppUser))
    #[serde(rename = "appUserId")]
    pub app_user_id: String,
    #[serde(rename = "appUser")]
    pub app_user: AppUser,
    pub notes: String,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct JobApplication {
    pub id: i32,
    // References(typeof(Job))
    #[serde(rename = "jobId")]
    pub job_id: i32,
    // References(typeof(Contact))
    #[serde(rename = "contactId")]
    pub contact_id: i32,
    pub position: Job,
    pub applicant: Contact,
    pub comments: Vec<JobApplicationComment>,
    #[serde(rename = "appliedDate")]
    pub applied_date: String,
    #[serde(rename = "applicationStatus")]
    pub application_status: JobApplicationStatus,
    pub attachments: Vec<JobApplicationAttachment>,
    pub events: Vec<JobApplicationEvent>,
    #[serde(rename = "phoneScreen")]
    pub phone_screen: PhoneScreen,
    pub interview: Interview,
    #[serde(rename = "jobOffer")]
    pub job_offer: JobOffer,
}

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Default)]
#[serde(default)]
pub struct UpdateJobApplication {
    pub id: i32,
    #[serde(rename = "jobId")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub job_id: Option<i32>,
    #[serde(rename = "contactId")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub contact_id: Option<i32>,
    #[serde(rename = "appliedDate")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub applied_date: Option<String>,
    #[serde(rename = "applicationStatus")]
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub application_status: Option<JobApplicationStatus>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub attachments: Option<Vec<JobApplicationAttachment>>,
}

Rust UpdateJobApplication DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml

HTTP + XML

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /xml/reply/UpdateJobApplication HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<UpdateJobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <ApplicationStatus>Applied</ApplicationStatus>
  <AppliedDate>0001-01-01T00:00:00</AppliedDate>
  <Attachments>
    <JobApplicationAttachment>
      <ContentLength>0</ContentLength>
      <ContentType>String</ContentType>
      <FileName>String</FileName>
      <FilePath>String</FilePath>
      <Id>0</Id>
      <JobApplicationId>0</JobApplicationId>
    </JobApplicationAttachment>
  </Attachments>
  <ContactId>0</ContactId>
  <Id>0</Id>
  <JobId>0</JobId>
</UpdateJobApplication>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<JobApplication xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <Applicant>
    <About>String</About>
    <Applications>
      <JobApplication>
        <Applicant>
          <About>String</About>
          <Applications>
            <JobApplication>
              <Applicant>
                <About>String</About>
                <Applications>
                  <JobApplication>
                    <Applicant i:nil="true" />
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <AvailabilityWeeks>0</AvailabilityWeeks>
                <Email>String</Email>
                <FirstName>String</FirstName>
                <Id>0</Id>
                <JobType>String</JobType>
                <LastName>String</LastName>
                <Phone>String</Phone>
                <PreferredLocation>String</PreferredLocation>
                <PreferredWorkType>FullTime</PreferredWorkType>
                <ProfileUrl>String</ProfileUrl>
                <SalaryExpectation>0</SalaryExpectation>
                <Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1:string>
                </Skills>
              </Applicant>
              <ApplicationStatus>Applied</ApplicationStatus>
              <AppliedDate>0001-01-01T00:00:00</AppliedDate>
              <Attachments>
                <JobApplicationAttachment>
                  <ContentLength>0</ContentLength>
                  <ContentType>String</ContentType>
                  <FileName>String</FileName>
                  <FilePath>String</FilePath>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationAttachment>
              </Attachments>
              <Comments>
                <JobApplicationComment>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Comment>String</Comment>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationComment>
              </Comments>
              <ContactId>0</ContactId>
              <Events>
                <JobApplicationEvent>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Description>String</Description>
                  <EventDate>0001-01-01T00:00:00</EventDate>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                  <Status>Applied</Status>
                </JobApplicationEvent>
              </Events>
              <Id>0</Id>
              <Interview>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <BookingTime>0001-01-01T00:00:00</BookingTime>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </Interview>
              <JobId>0</JobId>
              <JobOffer>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <Currency>String</Currency>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
                <SalaryOffer>0</SalaryOffer>
              </JobOffer>
              <PhoneScreen>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </PhoneScreen>
              <Position>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <Closing>0001-01-01T00:00:00</Closing>
                <Company>String</Company>
                <Description>String</Description>
                <EmploymentType>FullTime</EmploymentType>
                <Id>0</Id>
                <Location>String</Location>
                <SalaryRangeLower>0</SalaryRangeLower>
                <SalaryRangeUpper>0</SalaryRangeUpper>
                <Title>String</Title>
              </Position>
            </JobApplication>
          </Applications>
          <AvailabilityWeeks>0</AvailabilityWeeks>
          <Email>String</Email>
          <FirstName>String</FirstName>
          <Id>0</Id>
          <JobType>String</JobType>
          <LastName>String</LastName>
          <Phone>String</Phone>
          <PreferredLocation>String</PreferredLocation>
          <PreferredWorkType>FullTime</PreferredWorkType>
          <ProfileUrl>String</ProfileUrl>
          <SalaryExpectation>0</SalaryExpectation>
          <Skills xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </Skills>
        </Applicant>
        <ApplicationStatus>Applied</ApplicationStatus>
        <AppliedDate>0001-01-01T00:00:00</AppliedDate>
        <Attachments>
          <JobApplicationAttachment>
            <ContentLength>0</ContentLength>
            <ContentType>String</ContentType>
            <FileName>String</FileName>
            <FilePath>String</FilePath>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
          </JobApplicationAttachment>
        </Attachments>
        <Comments>
          <JobApplicationComment>
            <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
            <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
            <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
            <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
            <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
            <AppUser>
              <DisplayName>String</DisplayName>
              <FirstName>String</FirstName>
              <Id>String</Id>
              <LastName>String</LastName>
              <ProfileUrl>String</ProfileUrl>
            </AppUser>
            <AppUserId>String</AppUserId>
            <Comment>String</Comment>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
          </JobApplicationComment>
        </Comments>
        <ContactId>0</ContactId>
        <Events>
          <JobApplicationEvent>
            <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
            <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
            <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
            <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
            <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
            <AppUser>
              <DisplayName>String</DisplayName>
              <FirstName>String</FirstName>
              <Id>String</Id>
              <LastName>String</LastName>
              <ProfileUrl>String</ProfileUrl>
            </AppUser>
            <AppUserId>String</AppUserId>
            <Description>String</Description>
            <EventDate>0001-01-01T00:00:00</EventDate>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
            <Status>Applied</Status>
          </JobApplicationEvent>
        </Events>
        <Id>0</Id>
        <Interview>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <ApplicationStatus>Applied</ApplicationStatus>
          <BookingTime>0001-01-01T00:00:00</BookingTime>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
        </Interview>
        <JobId>0</JobId>
        <JobOffer>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <Currency>String</Currency>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
          <SalaryOffer>0</SalaryOffer>
        </JobOffer>
        <PhoneScreen>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <ApplicationStatus>Applied</ApplicationStatus>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
        </PhoneScreen>
        <Position>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <Applications>
            <JobApplication>
              <Applicant>
                <About>String</About>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <AvailabilityWeeks>0</AvailabilityWeeks>
                <Email>String</Email>
                <FirstName>String</FirstName>
                <Id>0</Id>
                <JobType>String</JobType>
                <LastName>String</LastName>
                <Phone>String</Phone>
                <PreferredLocation>String</PreferredLocation>
                <PreferredWorkType>FullTime</PreferredWorkType>
                <ProfileUrl>String</ProfileUrl>
                <SalaryExpectation>0</SalaryExpectation>
                <Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1:string>
                </Skills>
              </Applicant>
              <ApplicationStatus>Applied</ApplicationStatus>
              <AppliedDate>0001-01-01T00:00:00</AppliedDate>
              <Attachments>
                <JobApplicationAttachment>
                  <ContentLength>0</ContentLength>
                  <ContentType>String</ContentType>
                  <FileName>String</FileName>
                  <FilePath>String</FilePath>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationAttachment>
              </Attachments>
              <Comments>
                <JobApplicationComment>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Comment>String</Comment>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationComment>
              </Comments>
              <ContactId>0</ContactId>
              <Events>
                <JobApplicationEvent>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Description>String</Description>
                  <EventDate>0001-01-01T00:00:00</EventDate>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                  <Status>Applied</Status>
                </JobApplicationEvent>
              </Events>
              <Id>0</Id>
              <Interview>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <BookingTime>0001-01-01T00:00:00</BookingTime>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </Interview>
              <JobId>0</JobId>
              <JobOffer>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <Currency>String</Currency>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
                <SalaryOffer>0</SalaryOffer>
              </JobOffer>
              <PhoneScreen>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </PhoneScreen>
              <Position>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <Closing>0001-01-01T00:00:00</Closing>
                <Company>String</Company>
                <Description>String</Description>
                <EmploymentType>FullTime</EmploymentType>
                <Id>0</Id>
                <Location>String</Location>
                <SalaryRangeLower>0</SalaryRangeLower>
                <SalaryRangeUpper>0</SalaryRangeUpper>
                <Title>String</Title>
              </Position>
            </JobApplication>
          </Applications>
          <Closing>0001-01-01T00:00:00</Closing>
          <Company>String</Company>
          <Description>String</Description>
          <EmploymentType>FullTime</EmploymentType>
          <Id>0</Id>
          <Location>String</Location>
          <SalaryRangeLower>0</SalaryRangeLower>
          <SalaryRangeUpper>0</SalaryRangeUpper>
          <Title>String</Title>
        </Position>
      </JobApplication>
    </Applications>
    <AvailabilityWeeks>0</AvailabilityWeeks>
    <Email>String</Email>
    <FirstName>String</FirstName>
    <Id>0</Id>
    <JobType>String</JobType>
    <LastName>String</LastName>
    <Phone>String</Phone>
    <PreferredLocation>String</PreferredLocation>
    <PreferredWorkType>FullTime</PreferredWorkType>
    <ProfileUrl>String</ProfileUrl>
    <SalaryExpectation>0</SalaryExpectation>
    <Skills xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>String</d3p1:string>
    </Skills>
  </Applicant>
  <ApplicationStatus>Applied</ApplicationStatus>
  <AppliedDate>0001-01-01T00:00:00</AppliedDate>
  <Attachments>
    <JobApplicationAttachment>
      <ContentLength>0</ContentLength>
      <ContentType>String</ContentType>
      <FileName>String</FileName>
      <FilePath>String</FilePath>
      <Id>0</Id>
      <JobApplicationId>0</JobApplicationId>
    </JobApplicationAttachment>
  </Attachments>
  <Comments>
    <JobApplicationComment>
      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
      <AppUser>
        <DisplayName>String</DisplayName>
        <FirstName>String</FirstName>
        <Id>String</Id>
        <LastName>String</LastName>
        <ProfileUrl>String</ProfileUrl>
      </AppUser>
      <AppUserId>String</AppUserId>
      <Comment>String</Comment>
      <Id>0</Id>
      <JobApplicationId>0</JobApplicationId>
    </JobApplicationComment>
  </Comments>
  <ContactId>0</ContactId>
  <Events>
    <JobApplicationEvent>
      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
      <AppUser>
        <DisplayName>String</DisplayName>
        <FirstName>String</FirstName>
        <Id>String</Id>
        <LastName>String</LastName>
        <ProfileUrl>String</ProfileUrl>
      </AppUser>
      <AppUserId>String</AppUserId>
      <Description>String</Description>
      <EventDate>0001-01-01T00:00:00</EventDate>
      <Id>0</Id>
      <JobApplicationId>0</JobApplicationId>
      <Status>Applied</Status>
    </JobApplicationEvent>
  </Events>
  <Id>0</Id>
  <Interview>
    <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
    <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
    <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
    <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
    <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
    <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
    <AppUser>
      <DisplayName>String</DisplayName>
      <FirstName>String</FirstName>
      <Id>String</Id>
      <LastName>String</LastName>
      <ProfileUrl>String</ProfileUrl>
    </AppUser>
    <AppUserId>String</AppUserId>
    <ApplicationStatus>Applied</ApplicationStatus>
    <BookingTime>0001-01-01T00:00:00</BookingTime>
    <Id>0</Id>
    <JobApplicationId>0</JobApplicationId>
    <Notes>String</Notes>
  </Interview>
  <JobId>0</JobId>
  <JobOffer>
    <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
    <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
    <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
    <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
    <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
    <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
    <AppUser>
      <DisplayName>String</DisplayName>
      <FirstName>String</FirstName>
      <Id>String</Id>
      <LastName>String</LastName>
      <ProfileUrl>String</ProfileUrl>
    </AppUser>
    <AppUserId>String</AppUserId>
    <Currency>String</Currency>
    <Id>0</Id>
    <JobApplicationId>0</JobApplicationId>
    <Notes>String</Notes>
    <SalaryOffer>0</SalaryOffer>
  </JobOffer>
  <PhoneScreen>
    <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
    <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
    <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
    <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
    <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
    <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
    <AppUser>
      <DisplayName>String</DisplayName>
      <FirstName>String</FirstName>
      <Id>String</Id>
      <LastName>String</LastName>
      <ProfileUrl>String</ProfileUrl>
    </AppUser>
    <AppUserId>String</AppUserId>
    <ApplicationStatus>Applied</ApplicationStatus>
    <Id>0</Id>
    <JobApplicationId>0</JobApplicationId>
    <Notes>String</Notes>
  </PhoneScreen>
  <Position>
    <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
    <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
    <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
    <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
    <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
    <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
    <Applications>
      <JobApplication>
        <Applicant>
          <About>String</About>
          <Applications>
            <JobApplication>
              <Applicant>
                <About>String</About>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <AvailabilityWeeks>0</AvailabilityWeeks>
                <Email>String</Email>
                <FirstName>String</FirstName>
                <Id>0</Id>
                <JobType>String</JobType>
                <LastName>String</LastName>
                <Phone>String</Phone>
                <PreferredLocation>String</PreferredLocation>
                <PreferredWorkType>FullTime</PreferredWorkType>
                <ProfileUrl>String</ProfileUrl>
                <SalaryExpectation>0</SalaryExpectation>
                <Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1:string>
                </Skills>
              </Applicant>
              <ApplicationStatus>Applied</ApplicationStatus>
              <AppliedDate>0001-01-01T00:00:00</AppliedDate>
              <Attachments>
                <JobApplicationAttachment>
                  <ContentLength>0</ContentLength>
                  <ContentType>String</ContentType>
                  <FileName>String</FileName>
                  <FilePath>String</FilePath>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationAttachment>
              </Attachments>
              <Comments>
                <JobApplicationComment>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Comment>String</Comment>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationComment>
              </Comments>
              <ContactId>0</ContactId>
              <Events>
                <JobApplicationEvent>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Description>String</Description>
                  <EventDate>0001-01-01T00:00:00</EventDate>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                  <Status>Applied</Status>
                </JobApplicationEvent>
              </Events>
              <Id>0</Id>
              <Interview>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <BookingTime>0001-01-01T00:00:00</BookingTime>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </Interview>
              <JobId>0</JobId>
              <JobOffer>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <Currency>String</Currency>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
                <SalaryOffer>0</SalaryOffer>
              </JobOffer>
              <PhoneScreen>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </PhoneScreen>
              <Position>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <Closing>0001-01-01T00:00:00</Closing>
                <Company>String</Company>
                <Description>String</Description>
                <EmploymentType>FullTime</EmploymentType>
                <Id>0</Id>
                <Location>String</Location>
                <SalaryRangeLower>0</SalaryRangeLower>
                <SalaryRangeUpper>0</SalaryRangeUpper>
                <Title>String</Title>
              </Position>
            </JobApplication>
          </Applications>
          <AvailabilityWeeks>0</AvailabilityWeeks>
          <Email>String</Email>
          <FirstName>String</FirstName>
          <Id>0</Id>
          <JobType>String</JobType>
          <LastName>String</LastName>
          <Phone>String</Phone>
          <PreferredLocation>String</PreferredLocation>
          <PreferredWorkType>FullTime</PreferredWorkType>
          <ProfileUrl>String</ProfileUrl>
          <SalaryExpectation>0</SalaryExpectation>
          <Skills xmlns:d6p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
            <d6p1:string>String</d6p1:string>
          </Skills>
        </Applicant>
        <ApplicationStatus>Applied</ApplicationStatus>
        <AppliedDate>0001-01-01T00:00:00</AppliedDate>
        <Attachments>
          <JobApplicationAttachment>
            <ContentLength>0</ContentLength>
            <ContentType>String</ContentType>
            <FileName>String</FileName>
            <FilePath>String</FilePath>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
          </JobApplicationAttachment>
        </Attachments>
        <Comments>
          <JobApplicationComment>
            <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
            <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
            <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
            <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
            <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
            <AppUser>
              <DisplayName>String</DisplayName>
              <FirstName>String</FirstName>
              <Id>String</Id>
              <LastName>String</LastName>
              <ProfileUrl>String</ProfileUrl>
            </AppUser>
            <AppUserId>String</AppUserId>
            <Comment>String</Comment>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
          </JobApplicationComment>
        </Comments>
        <ContactId>0</ContactId>
        <Events>
          <JobApplicationEvent>
            <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
            <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
            <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
            <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
            <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
            <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
            <AppUser>
              <DisplayName>String</DisplayName>
              <FirstName>String</FirstName>
              <Id>String</Id>
              <LastName>String</LastName>
              <ProfileUrl>String</ProfileUrl>
            </AppUser>
            <AppUserId>String</AppUserId>
            <Description>String</Description>
            <EventDate>0001-01-01T00:00:00</EventDate>
            <Id>0</Id>
            <JobApplicationId>0</JobApplicationId>
            <Status>Applied</Status>
          </JobApplicationEvent>
        </Events>
        <Id>0</Id>
        <Interview>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <ApplicationStatus>Applied</ApplicationStatus>
          <BookingTime>0001-01-01T00:00:00</BookingTime>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
        </Interview>
        <JobId>0</JobId>
        <JobOffer>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <Currency>String</Currency>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
          <SalaryOffer>0</SalaryOffer>
        </JobOffer>
        <PhoneScreen>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <AppUser>
            <DisplayName>String</DisplayName>
            <FirstName>String</FirstName>
            <Id>String</Id>
            <LastName>String</LastName>
            <ProfileUrl>String</ProfileUrl>
          </AppUser>
          <AppUserId>String</AppUserId>
          <ApplicationStatus>Applied</ApplicationStatus>
          <Id>0</Id>
          <JobApplicationId>0</JobApplicationId>
          <Notes>String</Notes>
        </PhoneScreen>
        <Position>
          <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
          <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
          <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
          <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
          <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
          <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
          <Applications>
            <JobApplication>
              <Applicant>
                <About>String</About>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <Applications i:nil="true" />
                      <Closing>0001-01-01T00:00:00</Closing>
                      <Company>String</Company>
                      <Description>String</Description>
                      <EmploymentType>FullTime</EmploymentType>
                      <Id>0</Id>
                      <Location>String</Location>
                      <SalaryRangeLower>0</SalaryRangeLower>
                      <SalaryRangeUpper>0</SalaryRangeUpper>
                      <Title>String</Title>
                    </Position>
                  </JobApplication>
                </Applications>
                <AvailabilityWeeks>0</AvailabilityWeeks>
                <Email>String</Email>
                <FirstName>String</FirstName>
                <Id>0</Id>
                <JobType>String</JobType>
                <LastName>String</LastName>
                <Phone>String</Phone>
                <PreferredLocation>String</PreferredLocation>
                <PreferredWorkType>FullTime</PreferredWorkType>
                <ProfileUrl>String</ProfileUrl>
                <SalaryExpectation>0</SalaryExpectation>
                <Skills xmlns:d9p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                  <d9p1:string>String</d9p1:string>
                </Skills>
              </Applicant>
              <ApplicationStatus>Applied</ApplicationStatus>
              <AppliedDate>0001-01-01T00:00:00</AppliedDate>
              <Attachments>
                <JobApplicationAttachment>
                  <ContentLength>0</ContentLength>
                  <ContentType>String</ContentType>
                  <FileName>String</FileName>
                  <FilePath>String</FilePath>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationAttachment>
              </Attachments>
              <Comments>
                <JobApplicationComment>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Comment>String</Comment>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                </JobApplicationComment>
              </Comments>
              <ContactId>0</ContactId>
              <Events>
                <JobApplicationEvent>
                  <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                  <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                  <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                  <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                  <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                  <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                  <AppUser>
                    <DisplayName>String</DisplayName>
                    <FirstName>String</FirstName>
                    <Id>String</Id>
                    <LastName>String</LastName>
                    <ProfileUrl>String</ProfileUrl>
                  </AppUser>
                  <AppUserId>String</AppUserId>
                  <Description>String</Description>
                  <EventDate>0001-01-01T00:00:00</EventDate>
                  <Id>0</Id>
                  <JobApplicationId>0</JobApplicationId>
                  <Status>Applied</Status>
                </JobApplicationEvent>
              </Events>
              <Id>0</Id>
              <Interview>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <BookingTime>0001-01-01T00:00:00</BookingTime>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </Interview>
              <JobId>0</JobId>
              <JobOffer>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <Currency>String</Currency>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
                <SalaryOffer>0</SalaryOffer>
              </JobOffer>
              <PhoneScreen>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <AppUser>
                  <DisplayName>String</DisplayName>
                  <FirstName>String</FirstName>
                  <Id>String</Id>
                  <LastName>String</LastName>
                  <ProfileUrl>String</ProfileUrl>
                </AppUser>
                <AppUserId>String</AppUserId>
                <ApplicationStatus>Applied</ApplicationStatus>
                <Id>0</Id>
                <JobApplicationId>0</JobApplicationId>
                <Notes>String</Notes>
              </PhoneScreen>
              <Position>
                <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                <Applications>
                  <JobApplication>
                    <Applicant>
                      <About>String</About>
                      <Applications i:nil="true" />
                      <AvailabilityWeeks>0</AvailabilityWeeks>
                      <Email>String</Email>
                      <FirstName>String</FirstName>
                      <Id>0</Id>
                      <JobType>String</JobType>
                      <LastName>String</LastName>
                      <Phone>String</Phone>
                      <PreferredLocation>String</PreferredLocation>
                      <PreferredWorkType>FullTime</PreferredWorkType>
                      <ProfileUrl>String</ProfileUrl>
                      <SalaryExpectation>0</SalaryExpectation>
                      <Skills xmlns:d12p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                        <d12p1:string>String</d12p1:string>
                      </Skills>
                    </Applicant>
                    <ApplicationStatus>Applied</ApplicationStatus>
                    <AppliedDate>0001-01-01T00:00:00</AppliedDate>
                    <Attachments>
                      <JobApplicationAttachment>
                        <ContentLength>0</ContentLength>
                        <ContentType>String</ContentType>
                        <FileName>String</FileName>
                        <FilePath>String</FilePath>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationAttachment>
                    </Attachments>
                    <Comments>
                      <JobApplicationComment>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Comment>String</Comment>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                      </JobApplicationComment>
                    </Comments>
                    <ContactId>0</ContactId>
                    <Events>
                      <JobApplicationEvent>
                        <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                        <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                        <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                        <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                        <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                        <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                        <AppUser>
                          <DisplayName>String</DisplayName>
                          <FirstName>String</FirstName>
                          <Id>String</Id>
                          <LastName>String</LastName>
                          <ProfileUrl>String</ProfileUrl>
                        </AppUser>
                        <AppUserId>String</AppUserId>
                        <Description>String</Description>
                        <EventDate>0001-01-01T00:00:00</EventDate>
                        <Id>0</Id>
                        <JobApplicationId>0</JobApplicationId>
                        <Status>Applied</Status>
                      </JobApplicationEvent>
                    </Events>
                    <Id>0</Id>
                    <Interview>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <BookingTime>0001-01-01T00:00:00</BookingTime>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </Interview>
                    <JobId>0</JobId>
                    <JobOffer>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <Currency>String</Currency>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                      <SalaryOffer>0</SalaryOffer>
                    </JobOffer>
                    <PhoneScreen>
                      <CreatedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</CreatedDate>
                      <CreatedBy xmlns="http://schemas.servicestack.net/types">String</CreatedBy>
                      <ModifiedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</ModifiedDate>
                      <ModifiedBy xmlns="http://schemas.servicestack.net/types">String</ModifiedBy>
                      <DeletedDate xmlns="http://schemas.servicestack.net/types">0001-01-01T00:00:00</DeletedDate>
                      <DeletedBy xmlns="http://schemas.servicestack.net/types">String</DeletedBy>
                      <AppUser>
                        <DisplayName>String</DisplayName>
                        <FirstName>String</FirstName>
                        <Id>String</Id>
                        <LastName>String</LastName>
                        <ProfileUrl>String</ProfileUrl>
                      </AppUser>
                      <AppUserId>String</AppUserId>
                      <ApplicationStatus>Applied</ApplicationStatus>
                      <Id>0</Id>
                      <JobApplicationId>0</JobApplicationId>
                      <Notes>String</Notes>
                    </PhoneScreen>
                    <Position i:nil="true" />
                  </JobApplication>
                </Applications>
                <Closing>0001-01-01T00:00:00</Closing>
                <Company>String</Company>
                <Description>String</Description>
                <EmploymentType>FullTime</EmploymentType>
                <Id>0</Id>
                <Location>String</Location>
                <SalaryRangeLower>0</SalaryRangeLower>
                <SalaryRangeUpper>0</SalaryRangeUpper>
                <Title>String</Title>
              </Position>
            </JobApplication>
          </Applications>
          <Closing>0001-01-01T00:00:00</Closing>
          <Company>String</Company>
          <Description>String</Description>
          <EmploymentType>FullTime</EmploymentType>
          <Id>0</Id>
          <Location>String</Location>
          <SalaryRangeLower>0</SalaryRangeLower>
          <SalaryRangeUpper>0</SalaryRangeUpper>
          <Title>String</Title>
        </Position>
      </JobApplication>
    </Applications>
    <Closing>0001-01-01T00:00:00</Closing>
    <Company>String</Company>
    <Description>String</Description>
    <EmploymentType>FullTime</EmploymentType>
    <Id>0</Id>
    <Location>String</Location>
    <SalaryRangeLower>0</SalaryRangeLower>
    <SalaryRangeUpper>0</SalaryRangeUpper>
    <Title>String</Title>
  </Position>
</JobApplication>