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 .other suffix or ?format=other

HTTP + OTHER

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

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

{"id":0,"salaryOffer":0,"currency":"String","jobApplicationId":0,"applicationStatus":"Applied","notes":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"id":0,"salaryOffer":0,"currency":"String","jobApplicationId":0,"appUserId":"String","appUser":{"id":"String","firstName":"String","lastName":"String","displayName":"String","profileUrl":"String"},"notes":"String","createdDate":"0001-01-01T00:00:00","createdBy":"String","modifiedDate":"0001-01-01T00:00:00","modifiedBy":"String","deletedDate":"0001-01-01T00:00:00","deletedBy":"String"}