MyApp

<back to all web services

UpdateInterview

Talent
Requires Authentication
import datetime
import decimal
from marshmallow.fields import *
from servicestack import *
from typing import *
from dataclasses import dataclass, field
from dataclasses_json import dataclass_json, LetterCase, Undefined, config
from enum import Enum, IntEnum


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AuditBase:
    created_date: datetime.datetime = datetime.datetime(1, 1, 1)
    # @Required()
    created_by: Optional[str] = None

    modified_date: datetime.datetime = datetime.datetime(1, 1, 1)
    # @Required()
    modified_by: Optional[str] = None

    deleted_date: Optional[datetime.datetime] = None
    deleted_by: Optional[str] = None


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class AppUser:
    id: Optional[str] = None
    first_name: Optional[str] = None
    last_name: Optional[str] = None
    display_name: Optional[str] = None
    profile_url: Optional[str] = None


class JobApplicationStatus(str, Enum):
    APPLIED = 'Applied'
    PHONE_SCREENING = 'PhoneScreening'
    PHONE_SCREENING_COMPLETED = 'PhoneScreeningCompleted'
    INTERVIEW = 'Interview'
    INTERVIEW_COMPLETED = 'InterviewCompleted'
    OFFER = 'Offer'
    DISQUALIFIED = 'Disqualified'


@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class Interview(AuditBase):
    id: int = 0
    booking_time: datetime.datetime = datetime.datetime(1, 1, 1)
    # @References(typeof(JobApplication))
    job_application_id: int = 0

    # @References(typeof(AppUser))
    app_user_id: Optional[str] = None

    app_user: Optional[AppUser] = None
    application_status: Optional[JobApplicationStatus] = None
    notes: Optional[str] = None


# @ValidateRequest(Validator="IsAuthenticated")
@dataclass_json(letter_case=LetterCase.CAMEL, undefined=Undefined.EXCLUDE)
@dataclass
class UpdateInterview(IPatchDb[Interview]):
    # @Validate(Validator="GreaterThan(0)")
    id: int = 0

    job_application_id: Optional[int] = None
    notes: Optional[str] = None
    application_status: Optional[JobApplicationStatus] = None

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

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

<Interview 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>
  <ApplicationStatus>Applied</ApplicationStatus>
  <BookingTime>0001-01-01T00:00:00</BookingTime>
  <Id>0</Id>
  <JobApplicationId>0</JobApplicationId>
  <Notes>String</Notes>
</Interview>