Struct gusto_api::types::PostCompanyJobApplicantsRequest [−][src]
pub struct PostCompanyJobApplicantsRequest {
pub date_of_birth: String,
pub email: String,
pub first_name: String,
pub job_title: String,
pub last_name: String,
pub onboarding_person_type: Option<OnboardingPersonType>,
pub phone: String,
pub send_offer: Option<bool>,
pub start_date: String,
}Expand description
Fields
date_of_birth: Stringemail: Stringfirst_name: Stringjob_title: Stringlast_name: Stringonboarding_person_type: Option<OnboardingPersonType>Must be “Employee” if send_offer is set to true.
phone: Stringsend_offer: Option<bool>Required if onboarding_person_type is set to “Employee”.
start_date: StringTrait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl Send for PostCompanyJobApplicantsRequest
impl Sync for PostCompanyJobApplicantsRequest
impl Unpin for PostCompanyJobApplicantsRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more