MyApp

<back to all web services

UpdateJobOffer

Talent
Requires Authentication
namespace MyApp.ServiceModel

open System
open System.Collections
open System.Collections.Generic
open System.Runtime.Serialization
open ServiceStack
open ServiceStack.DataAnnotations

    [<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 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 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

    type JobApplicationStatus =
        | Applied = 0
        | PhoneScreening = 1
        | PhoneScreeningCompleted = 2
        | Interview = 3
        | InterviewCompleted = 4
        | Offer = 5
        | Disqualified = 6

    [<ValidateRequest(Validator="IsAuthenticated")>]
    [<AllowNullLiteral>]
    type UpdateJobOffer() = 
        member val Id:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val SalaryOffer:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val Currency:String = null with get,set
        member val JobApplicationId:Nullable<Int32> = new Nullable<Int32>() with get,set
        member val ApplicationStatus:Nullable<JobApplicationStatus> = new Nullable<JobApplicationStatus>() with get,set
        member val Notes:String = null with get,set

F# UpdateJobOffer DTOs

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

HTTP + XML

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

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

<UpdateJobOffer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <ApplicationStatus>Applied</ApplicationStatus>
  <Currency>String</Currency>
  <Id>0</Id>
  <JobApplicationId>0</JobApplicationId>
  <Notes>String</Notes>
  <SalaryOffer>0</SalaryOffer>
</UpdateJobOffer>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<JobOffer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MyApp.ServiceModel">
  <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>