Struct gusto_api::Employee [−][src]
pub struct Employee {Show fields
pub id: u64,
pub version: String,
pub first_name: String,
pub middle_initial: String,
pub last_name: String,
pub company_id: u64,
pub manager_id: u64,
pub department: String,
pub email: String,
pub ssn: String,
pub date_of_birth: NaiveDate,
pub jobs: Vec<Job>,
pub home_address: Address,
pub garnishments: Vec<Garnishment>,
pub eligible_paid_time_off: Vec<PaidTimeOff>,
pub onboarded: bool,
pub terminated: bool,
pub terminations: Vec<Termination>,
}Expand description
An employee. FROM: https://docs.gusto.com/v1/employees
Fields
id: u64version: Stringfirst_name: Stringmiddle_initial: Stringlast_name: Stringcompany_id: u64manager_id: u64department: Stringemail: Stringssn: Stringdate_of_birth: NaiveDatejobs: Vec<Job>home_address: Addressgarnishments: Vec<Garnishment>eligible_paid_time_off: Vec<PaidTimeOff>onboarded: boolterminated: boolterminations: Vec<Termination>Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Employeeimpl UnwindSafe for EmployeeBlanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more