MyApp

<back to all web services

CreateContact

Talent
import java.math.*
import java.util.*
import net.servicestack.client.*


open class CreateContact : ICreateDb<Contact>
{
    @Validate(Validator="NotEmpty")
    var firstName:String? = null

    @Validate(Validator="NotEmpty")
    var lastName:String? = null

    var profileUrl:String? = null
    var salaryExpectation:Int? = null
    @Validate(Validator="NotEmpty")
    var jobType:String? = null

    var availabilityWeeks:Int? = null
    var preferredWorkType:EmploymentType? = null
    @Validate(Validator="NotEmpty")
    var preferredLocation:String? = null

    @Validate(Validator="NotEmpty")
    var email:String? = null

    var phone:String? = null
    var skills:ArrayList<String>? = null
    var about:String? = null
}

enum class EmploymentType
{
    FullTime,
    PartTime,
    Casual,
    Contract,
}

open class Contact
{
    var id:Int? = null
    @Computed()
    var displayName:String? = null

    var profileUrl:String? = null
    var firstName:String? = null
    var lastName:String? = null
    var salaryExpectation:Int? = null
    var jobType:String? = null
    var availabilityWeeks:Int? = null
    var preferredWorkType:EmploymentType? = null
    var preferredLocation:String? = null
    var email:String? = null
    var phone:String? = null
    var skills:ArrayList<String> = ArrayList<String>()
    var about:String? = null
    var applications:ArrayList<JobApplication> = ArrayList<JobApplication>()
}

open class JobApplication
{
    var id:Int? = null
    @References(Job.class)
    var jobId:Int? = null

    @References(Contact.class)
    var contactId:Int? = null

    var position:Job? = null
    var applicant:Contact? = null
    var comments:ArrayList<JobApplicationComment> = ArrayList<JobApplicationComment>()
    var appliedDate:Date? = null
    var applicationStatus:JobApplicationStatus? = null
    var attachments:ArrayList<JobApplicationAttachment> = ArrayList<JobApplicationAttachment>()
    var events:ArrayList<JobApplicationEvent> = ArrayList<JobApplicationEvent>()
    var phoneScreen:PhoneScreen? = null
    var interview:Interview? = null
    var jobOffer:JobOffer? = null
}

open class Job : AuditBase()
{
    var id:Int? = null
    var title:String? = null
    var employmentType:EmploymentType? = null
    var company:String? = null
    var location:String? = null
    var salaryRangeLower:Int? = null
    var salaryRangeUpper:Int? = null
    var description:String? = null
    var applications:ArrayList<JobApplication> = ArrayList<JobApplication>()
    var closing:Date? = null
}

@DataContract
open class AuditBase
{
    @DataMember(Order=1)
    var createdDate:Date? = null

    @DataMember(Order=2)
    @Required()
    var createdBy:String? = null

    @DataMember(Order=3)
    var modifiedDate:Date? = null

    @DataMember(Order=4)
    @Required()
    var modifiedBy:String? = null

    @DataMember(Order=5)
    var deletedDate:Date? = null

    @DataMember(Order=6)
    var deletedBy:String? = null
}

open class JobApplicationComment : AuditBase()
{
    var id:Int? = null
    @References(AppUser.class)
    var appUserId:String? = null

    var appUser:AppUser? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    var comment:String? = null
}

open class AppUser
{
    var id:String? = null
    var firstName:String? = null
    var lastName:String? = null
    var displayName:String? = null
    var profileUrl:String? = null
}

enum class JobApplicationStatus
{
    Applied,
    PhoneScreening,
    PhoneScreeningCompleted,
    Interview,
    InterviewCompleted,
    Offer,
    Disqualified,
}

open class JobApplicationAttachment
{
    var id:Int? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    var fileName:String? = null
    var filePath:String? = null
    var contentType:String? = null
    var contentLength:Long? = null
}

open class JobApplicationEvent : AuditBase()
{
    var id:Int? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    @References(AppUser.class)
    var appUserId:String? = null

    var appUser:AppUser? = null
    var description:String? = null
    var status:JobApplicationStatus? = null
    var eventDate:Date? = null
}

open class PhoneScreen : AuditBase()
{
    var id:Int? = null
    @References(AppUser.class)
    var appUserId:String? = null

    var appUser:AppUser? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    var applicationStatus:JobApplicationStatus? = null
    var notes:String? = null
}

open class Interview : AuditBase()
{
    var id:Int? = null
    var bookingTime:Date? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    @References(AppUser.class)
    var appUserId:String? = null

    var appUser:AppUser? = null
    var applicationStatus:JobApplicationStatus? = null
    var notes:String? = null
}

open class JobOffer : AuditBase()
{
    var id:Int? = null
    var salaryOffer:Int? = null
    var currency:String? = null
    @References(JobApplication.class)
    var jobApplicationId:Int? = null

    @References(AppUser.class)
    var appUserId:String? = null

    var appUser:AppUser? = null
    var notes:String? = null
}

Kotlin CreateContact 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/CreateContact HTTP/1.1 
Host: blazor-gallery.servicestack.net 
Accept: application/xml
Content-Type: application/xml
Content-Length: length

<CreateContact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <About>String</About>
  <AvailabilityWeeks>0</AvailabilityWeeks>
  <Email>String</Email>
  <FirstName>String</FirstName>
  <JobType>String</JobType>
  <LastName>String</LastName>
  <Phone>String</Phone>
  <PreferredLocation>String</PreferredLocation>
  <PreferredWorkType>FullTime</PreferredWorkType>
  <ProfileUrl>String</ProfileUrl>
  <SalaryExpectation>0</SalaryExpectation>
  <Skills xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </Skills>
</CreateContact>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<Contact xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <About>String</About>
  <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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
          <d5p1:string>String</d5p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d8p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                <d8p1:string>String</d8p1: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:d11p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
                      <d11p1:string>String</d11p1: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:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>String</d2p1:string>
  </Skills>
</Contact>