/* Options: Date: 2026-07-08 20:43:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StaffApplicantHireRequest.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/v1/staff/applicant/hire", Verbs="POST,OPTIONS") open class StaffApplicantHireRequest : IReturn { open var StaffApplicantID:Int? = null open var ProjectID:Int? = null open var JobID:Int? = null open var PlaceholderContactID:Int? = null open var BudgetedHours:Double? = null open var EnableAppAccess:Boolean? = null open var AsCrewLead:Boolean? = null companion object { private val responseType = PmActionResponse::class.java } override fun getResponseType(): Any? = StaffApplicantHireRequest.responseType } open class PmActionResponse { open var Success:Boolean? = null open var Message:String? = null open var NewId:Int? = null open var ResponseStatus:ResponseStatus? = null }