namespace MyApp.ServiceModel
open System
open System.IO
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations
type EmploymentType =
| FullTime = 0
| PartTime = 1
| Casual = 2
| Contract = 3
[<DataContract>]
[<AllowNullLiteral>]
type AuditBase() =
[<DataMember(Order=1)>]
member val CreatedDate:DateTime = new DateTime() with get,set
[<DataMember(Order=2)>]
[<Required>]
member val CreatedBy:String = null with get,set
[<DataMember(Order=3)>]
member val ModifiedDate:DateTime = new DateTime() with get,set
[<DataMember(Order=4)>]
[<Required>]
member val ModifiedBy:String = null with get,set
[<DataMember(Order=5)>]
member val DeletedDate:Nullable<DateTime> = new Nullable<DateTime>() with get,set
[<DataMember(Order=6)>]
member val DeletedBy:String = null with get,set
[<AllowNullLiteral>]
type Job() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
member val Title:String = null with get,set
member val EmploymentType:EmploymentType = new EmploymentType() with get,set
member val Company:String = null with get,set
member val Location:String = null with get,set
member val SalaryRangeLower:Int32 = new Int32() with get,set
member val SalaryRangeUpper:Int32 = new Int32() with get,set
member val Description:String = null with get,set
member val Applications:ResizeArray<JobApplication> = null with get,set
member val Closing:DateTime = new DateTime() with get,set
[<AllowNullLiteral>]
type AppUser() =
member val Id:String = null with get,set
member val FirstName:String = null with get,set
member val LastName:String = null with get,set
member val DisplayName:String = null with get,set
member val ProfileUrl:String = null with get,set
[<AllowNullLiteral>]
type JobApplicationComment() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val AppUserId:String = null with get,set
member val AppUser:AppUser = null with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
member val Comment:String = null with get,set
type JobApplicationStatus =
| Applied = 0
| PhoneScreening = 1
| PhoneScreeningCompleted = 2
| Interview = 3
| InterviewCompleted = 4
| Offer = 5
| Disqualified = 6
[<AllowNullLiteral>]
type JobApplicationAttachment() =
member val Id:Int32 = new Int32() with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
member val FileName:String = null with get,set
member val FilePath:String = null with get,set
member val ContentType:String = null with get,set
member val ContentLength:Int64 = new Int64() with get,set
[<AllowNullLiteral>]
type JobApplicationEvent() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val AppUserId:String = null with get,set
member val AppUser:AppUser = null with get,set
member val Description:String = null with get,set
member val Status:Nullable<JobApplicationStatus> = new Nullable<JobApplicationStatus>() with get,set
member val EventDate:DateTime = new DateTime() with get,set
[<AllowNullLiteral>]
type PhoneScreen() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val AppUserId:String = null with get,set
member val AppUser:AppUser = null with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
member val ApplicationStatus:Nullable<JobApplicationStatus> = new Nullable<JobApplicationStatus>() with get,set
member val Notes:String = null with get,set
[<AllowNullLiteral>]
type Interview() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
member val BookingTime:DateTime = new DateTime() with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val AppUserId:String = null with get,set
member val AppUser:AppUser = null with get,set
member val ApplicationStatus:Nullable<JobApplicationStatus> = new Nullable<JobApplicationStatus>() with get,set
member val Notes:String = null with get,set
[<AllowNullLiteral>]
type JobOffer() =
inherit AuditBase()
member val Id:Int32 = new Int32() with get,set
member val SalaryOffer:Int32 = new Int32() with get,set
member val Currency:String = null with get,set
[<References(typeof<JobApplication>)>]
member val JobApplicationId:Int32 = new Int32() with get,set
[<References(typeof<AppUser>)>]
member val AppUserId:String = null with get,set
member val AppUser:AppUser = null with get,set
member val Notes:String = null with get,set
[<AllowNullLiteral>]
type JobApplication() =
member val Id:Int32 = new Int32() with get,set
[<References(typeof<Job>)>]
member val JobId:Int32 = new Int32() with get,set
[<References(typeof<Contact>)>]
member val ContactId:Int32 = new Int32() with get,set
member val Position:Job = null with get,set
member val Applicant:Contact = null with get,set
member val Comments:ResizeArray<JobApplicationComment> = null with get,set
member val AppliedDate:DateTime = new DateTime() with get,set
member val ApplicationStatus:JobApplicationStatus = new JobApplicationStatus() with get,set
member val Attachments:ResizeArray<JobApplicationAttachment> = null with get,set
member val Events:ResizeArray<JobApplicationEvent> = null with get,set
member val PhoneScreen:PhoneScreen = null with get,set
member val Interview:Interview = null with get,set
member val JobOffer:JobOffer = null with get,set
[<AllowNullLiteral>]
type Contact() =
member val Id:Int32 = new Int32() with get,set
[<Computed>]
member val DisplayName:String = null with get,set
member val ProfileUrl:String = null with get,set
member val FirstName:String = null with get,set
member val LastName:String = null with get,set
member val SalaryExpectation:Nullable<Int32> = new Nullable<Int32>() with get,set
member val JobType:String = null with get,set
member val AvailabilityWeeks:Int32 = new Int32() with get,set
member val PreferredWorkType:EmploymentType = new EmploymentType() with get,set
member val PreferredLocation:String = null with get,set
member val Email:String = null with get,set
member val Phone:String = null with get,set
member val Skills:ResizeArray<String> = null with get,set
member val About:String = null with get,set
member val Applications:ResizeArray<JobApplication> = null with get,set
[<AllowNullLiteral>]
type UpdateContact() =
member val Id:Int32 = new Int32() with get,set
[<Validate(Validator="NotEmpty")>]
member val FirstName:String = null with get,set
[<Validate(Validator="NotEmpty")>]
member val LastName:String = null with get,set
member val ProfileUrl:String = null with get,set
member val SalaryExpectation:Nullable<Int32> = new Nullable<Int32>() with get,set
[<Validate(Validator="NotEmpty")>]
member val JobType:String = null with get,set
member val AvailabilityWeeks:Nullable<Int32> = new Nullable<Int32>() with get,set
member val PreferredWorkType:Nullable<EmploymentType> = new Nullable<EmploymentType>() with get,set
member val PreferredLocation:String = null with get,set
[<Validate(Validator="NotEmpty")>]
member val Email:String = null with get,set
member val Phone:String = null with get,set
member val Skills:ResizeArray<String> = null with get,set
member val About:String = null with get,set
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /xml/reply/UpdateContact HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateContact 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>
<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>
</UpdateContact>
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>