import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*
open class QueryContacts : QueryDb<Contact>()
{
open var id:Int? = null
}
open class QueryDb<T> : QueryBase()
{
}
@DataContract
open class QueryBase
{
@DataMember(Order=1)
open var skip:Int? = null
@DataMember(Order=2)
open var take:Int? = null
@DataMember(Order=3)
open var orderBy:String? = null
@DataMember(Order=4)
open var orderByDesc:String? = null
@DataMember(Order=5)
open var include:String? = null
@DataMember(Order=6)
open var fields:String? = null
@DataMember(Order=7)
open var meta:HashMap<String,String>? = null
}
open class Contact
{
open var id:Int? = null
@Computed()
open var displayName:String? = null
open var profileUrl:String? = null
open var firstName:String? = null
open var lastName:String? = null
open var salaryExpectation:Int? = null
open var jobType:String? = null
open var availabilityWeeks:Int? = null
open var preferredWorkType:EmploymentType? = null
open var preferredLocation:String? = null
open var email:String? = null
open var phone:String? = null
open var skills:ArrayList<String>? = null
open var about:String? = null
open var applications:ArrayList<JobApplication> = ArrayList<JobApplication>()
}
enum class EmploymentType
{
FullTime,
PartTime,
Casual,
Contract,
}
open class JobApplication
{
open var id:Int? = null
@References(Type=Job::class)
open var jobId:Int? = null
@References(Type=Contact::class)
open var contactId:Int? = null
open var position:Job? = null
open var applicant:Contact? = null
open var comments:ArrayList<JobApplicationComment> = ArrayList<JobApplicationComment>()
open var appliedDate:Date? = null
open var applicationStatus:JobApplicationStatus? = null
open var attachments:ArrayList<JobApplicationAttachment> = ArrayList<JobApplicationAttachment>()
open var events:ArrayList<JobApplicationEvent> = ArrayList<JobApplicationEvent>()
open var phoneScreen:PhoneScreen? = null
open var interview:Interview? = null
open var jobOffer:JobOffer? = null
}
open class Job : AuditBase()
{
open var id:Int? = null
open var title:String? = null
open var employmentType:EmploymentType? = null
open var company:String? = null
open var location:String? = null
open var salaryRangeLower:Int? = null
open var salaryRangeUpper:Int? = null
open var description:String? = null
open var applications:ArrayList<JobApplication> = ArrayList<JobApplication>()
open var closing:Date? = null
}
@DataContract
open class AuditBase
{
@DataMember(Order=1)
open var createdDate:Date? = null
@DataMember(Order=2)
@Required()
open var createdBy:String? = null
@DataMember(Order=3)
open var modifiedDate:Date? = null
@DataMember(Order=4)
@Required()
open var modifiedBy:String? = null
@DataMember(Order=5)
open var deletedDate:Date? = null
@DataMember(Order=6)
open var deletedBy:String? = null
}
open class JobApplicationComment : AuditBase()
{
open var id:Int? = null
@References(Type=AppUser::class)
open var appUserId:String? = null
open var appUser:AppUser? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
open var comment:String? = null
}
open class AppUser
{
open var id:String? = null
open var firstName:String? = null
open var lastName:String? = null
open var displayName:String? = null
open var profileUrl:String? = null
}
enum class JobApplicationStatus
{
Applied,
PhoneScreening,
PhoneScreeningCompleted,
Interview,
InterviewCompleted,
Offer,
Disqualified,
}
open class JobApplicationAttachment
{
open var id:Int? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
open var fileName:String? = null
open var filePath:String? = null
open var contentType:String? = null
open var contentLength:Long? = null
}
open class JobApplicationEvent : AuditBase()
{
open var id:Int? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
@References(Type=AppUser::class)
open var appUserId:String? = null
open var appUser:AppUser? = null
open var description:String? = null
open var status:JobApplicationStatus? = null
open var eventDate:Date? = null
}
open class PhoneScreen : AuditBase()
{
open var id:Int? = null
@References(Type=AppUser::class)
open var appUserId:String? = null
open var appUser:AppUser? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
open var applicationStatus:JobApplicationStatus? = null
open var notes:String? = null
}
open class Interview : AuditBase()
{
open var id:Int? = null
open var bookingTime:Date? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
@References(Type=AppUser::class)
open var appUserId:String? = null
open var appUser:AppUser? = null
open var applicationStatus:JobApplicationStatus? = null
open var notes:String? = null
}
open class JobOffer : AuditBase()
{
open var id:Int? = null
open var salaryOffer:Int? = null
open var currency:String? = null
@References(Type=JobApplication::class)
open var jobApplicationId:Int? = null
@References(Type=AppUser::class)
open var appUserId:String? = null
open var appUser:AppUser? = null
open var notes:String? = null
}
@DataContract
open class QueryResponse<T>
{
@DataMember(Order=1)
open var offset:Int? = null
@DataMember(Order=2)
open var total:Int? = null
@DataMember(Order=3)
open var results:ArrayList<Todo>? = null
@DataMember(Order=4)
open var meta:HashMap<String,String>? = null
@DataMember(Order=5)
open var responseStatus:ResponseStatus? = null
}
open class Todo
{
open var id:Long? = null
open var text:String? = null
open var isFinished:Boolean? = null
}
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/QueryContacts HTTP/1.1
Host: blazor-gallery.servicestack.net
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<QueryContacts xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
<Skip xmlns="http://schemas.servicestack.net/types">0</Skip>
<Take xmlns="http://schemas.servicestack.net/types">0</Take>
<OrderBy xmlns="http://schemas.servicestack.net/types">String</OrderBy>
<OrderByDesc xmlns="http://schemas.servicestack.net/types">String</OrderByDesc>
<Include xmlns="http://schemas.servicestack.net/types">String</Include>
<Fields xmlns="http://schemas.servicestack.net/types">String</Fields>
<Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.servicestack.net/types">
<d2p1:KeyValueOfstringstring>
<d2p1:Key>String</d2p1:Key>
<d2p1:Value>String</d2p1:Value>
</d2p1:KeyValueOfstringstring>
</Meta>
<Id>0</Id>
</QueryContacts>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <QueryResponseOfContacttlJ4_P31p xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.servicestack.net/types"> <Offset>0</Offset> <Total>0</Total> <Results xmlns:d2p1="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel"> <d2p1:Contact> <d2p1:About>String</d2p1:About> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant i:nil="true" /> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications i:nil="true" /> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d10p1:string>String</d10p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications i:nil="true" /> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d13p1:string>String</d13p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications i:nil="true" /> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d7p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d7p1:string>String</d7p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications i:nil="true" /> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d13p1:string>String</d13p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications i:nil="true" /> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d10p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d10p1:string>String</d10p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications> <d2p1:JobApplication> <d2p1:Applicant> <d2p1:About>String</d2p1:About> <d2p1:Applications i:nil="true" /> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d13p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d13p1:string>String</d13p1:string> </d2p1:Skills> </d2p1:Applicant> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:AppliedDate>0001-01-01T00:00:00</d2p1:AppliedDate> <d2p1:Attachments> <d2p1:JobApplicationAttachment> <d2p1:ContentLength>0</d2p1:ContentLength> <d2p1:ContentType>String</d2p1:ContentType> <d2p1:FileName>String</d2p1:FileName> <d2p1:FilePath>String</d2p1:FilePath> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationAttachment> </d2p1:Attachments> <d2p1:Comments> <d2p1:JobApplicationComment> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Comment>String</d2p1:Comment> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> </d2p1:JobApplicationComment> </d2p1:Comments> <d2p1:ContactId>0</d2p1:ContactId> <d2p1:Events> <d2p1:JobApplicationEvent> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Description>String</d2p1:Description> <d2p1:EventDate>0001-01-01T00:00:00</d2p1:EventDate> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Status>Applied</d2p1:Status> </d2p1:JobApplicationEvent> </d2p1:Events> <d2p1:Id>0</d2p1:Id> <d2p1:Interview> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:BookingTime>0001-01-01T00:00:00</d2p1:BookingTime> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:Interview> <d2p1:JobId>0</d2p1:JobId> <d2p1:JobOffer> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:Currency>String</d2p1:Currency> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> <d2p1:SalaryOffer>0</d2p1:SalaryOffer> </d2p1:JobOffer> <d2p1:PhoneScreen> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:AppUser> <d2p1:DisplayName>String</d2p1:DisplayName> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>String</d2p1:Id> <d2p1:LastName>String</d2p1:LastName> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> </d2p1:AppUser> <d2p1:AppUserId>String</d2p1:AppUserId> <d2p1:ApplicationStatus>Applied</d2p1:ApplicationStatus> <d2p1:Id>0</d2p1:Id> <d2p1:JobApplicationId>0</d2p1:JobApplicationId> <d2p1:Notes>String</d2p1:Notes> </d2p1:PhoneScreen> <d2p1:Position> <CreatedDate>0001-01-01T00:00:00</CreatedDate> <CreatedBy>String</CreatedBy> <ModifiedDate>0001-01-01T00:00:00</ModifiedDate> <ModifiedBy>String</ModifiedBy> <DeletedDate>0001-01-01T00:00:00</DeletedDate> <DeletedBy>String</DeletedBy> <d2p1:Applications i:nil="true" /> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:Closing>0001-01-01T00:00:00</d2p1:Closing> <d2p1:Company>String</d2p1:Company> <d2p1:Description>String</d2p1:Description> <d2p1:EmploymentType>FullTime</d2p1:EmploymentType> <d2p1:Id>0</d2p1:Id> <d2p1:Location>String</d2p1:Location> <d2p1:SalaryRangeLower>0</d2p1:SalaryRangeLower> <d2p1:SalaryRangeUpper>0</d2p1:SalaryRangeUpper> <d2p1:Title>String</d2p1:Title> </d2p1:Position> </d2p1:JobApplication> </d2p1:Applications> <d2p1:AvailabilityWeeks>0</d2p1:AvailabilityWeeks> <d2p1:Email>String</d2p1:Email> <d2p1:FirstName>String</d2p1:FirstName> <d2p1:Id>0</d2p1:Id> <d2p1:JobType>String</d2p1:JobType> <d2p1:LastName>String</d2p1:LastName> <d2p1:Phone>String</d2p1:Phone> <d2p1:PreferredLocation>String</d2p1:PreferredLocation> <d2p1:PreferredWorkType>FullTime</d2p1:PreferredWorkType> <d2p1:ProfileUrl>String</d2p1:ProfileUrl> <d2p1:SalaryExpectation>0</d2p1:SalaryExpectation> <d2p1:Skills xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d4p1:string>String</d4p1:string> </d2p1:Skills> </d2p1:Contact> </Results> <Meta xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:KeyValueOfstringstring> <d2p1:Key>String</d2p1:Key> <d2p1:Value>String</d2p1:Value> </d2p1:KeyValueOfstringstring> </Meta> <ResponseStatus> <ErrorCode>String</ErrorCode> <Message>String</Message> <StackTrace>String</StackTrace> <Errors> <ResponseError> <ErrorCode>String</ErrorCode> <FieldName>String</FieldName> <Message>String</Message> <Meta xmlns:d5p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d5p1:KeyValueOfstringstring> <d5p1:Key>String</d5p1:Key> <d5p1:Value>String</d5p1:Value> </d5p1:KeyValueOfstringstring> </Meta> </ResponseError> </Errors> <Meta xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:KeyValueOfstringstring> <d3p1:Key>String</d3p1:Key> <d3p1:Value>String</d3p1:Value> </d3p1:KeyValueOfstringstring> </Meta> </ResponseStatus> </QueryResponseOfContacttlJ4_P31p>