/* Options: Date: 2026-07-08 21:09:38 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: StaffApplyRequest.* //ExcludeTypes: //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.*; public class dtos { @Route(Path="/v1/staff/apply/{PostingUID}", Verbs="POST,OPTIONS") public static class StaffApplyRequest implements IReturn { public String PostingUID = null; public String Name = null; public String Email = null; public String Phone = null; public Integer YearsExperience = null; public BigDecimal AskRate = null; public String Skills = null; public String BaseText = null; public String ResumeText = null; public String getPostingUID() { return PostingUID; } public StaffApplyRequest setPostingUID(String value) { this.PostingUID = value; return this; } public String getName() { return Name; } public StaffApplyRequest setName(String value) { this.Name = value; return this; } public String getEmail() { return Email; } public StaffApplyRequest setEmail(String value) { this.Email = value; return this; } public String getPhone() { return Phone; } public StaffApplyRequest setPhone(String value) { this.Phone = value; return this; } public Integer getYearsExperience() { return YearsExperience; } public StaffApplyRequest setYearsExperience(Integer value) { this.YearsExperience = value; return this; } public BigDecimal getAskRate() { return AskRate; } public StaffApplyRequest setAskRate(BigDecimal value) { this.AskRate = value; return this; } public String getSkills() { return Skills; } public StaffApplyRequest setSkills(String value) { this.Skills = value; return this; } public String getBaseText() { return BaseText; } public StaffApplyRequest setBaseText(String value) { this.BaseText = value; return this; } public String getResumeText() { return ResumeText; } public StaffApplyRequest setResumeText(String value) { this.ResumeText = value; return this; } private static Object responseType = PmActionResponse.class; public Object getResponseType() { return responseType; } } public static class PmActionResponse { public Boolean Success = null; public String Message = null; public Integer NewId = null; public ResponseStatus ResponseStatus = null; public Boolean isSuccess() { return Success; } public PmActionResponse setSuccess(Boolean value) { this.Success = value; return this; } public String getMessage() { return Message; } public PmActionResponse setMessage(String value) { this.Message = value; return this; } public Integer getNewId() { return NewId; } public PmActionResponse setNewId(Integer value) { this.NewId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PmActionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }