Struct gusto_api::types::PutGarnishmentRequest
source · pub struct PutGarnishmentRequest {
pub active: Option<bool>,
pub amount: f64,
pub annual_maximum: f64,
pub court_ordered: Option<bool>,
pub deduct_as_percentage: Option<bool>,
pub description: String,
pub pay_period_maximum: f64,
pub recurring: Option<bool>,
pub times: i64,
pub version: String,
}Fields
active: Option<bool>Whether the employee is terminated.
amount: f64The ID of the employee in Gusto.
annual_maximum: f64The ID of the employee in Gusto.
court_ordered: Option<bool>Whether the employee is terminated.
deduct_as_percentage: Option<bool>Whether the employee is terminated.
description: StringA unique identifier of the employee in Gusto.
pay_period_maximum: f64The ID of the employee in Gusto.
recurring: Option<bool>Whether the employee is terminated.
times: i64The unique identifier of the location in Gusto.
version: StringA unique identifier of the employee in Gusto.
Trait Implementations
sourceimpl Clone for PutGarnishmentRequest
impl Clone for PutGarnishmentRequest
sourcefn clone(&self) -> PutGarnishmentRequest
fn clone(&self) -> PutGarnishmentRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PutGarnishmentRequest
impl Debug for PutGarnishmentRequest
sourceimpl<'de> Deserialize<'de> for PutGarnishmentRequest
impl<'de> Deserialize<'de> for PutGarnishmentRequest
sourcefn 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
sourceimpl JsonSchema for PutGarnishmentRequest
impl JsonSchema for PutGarnishmentRequest
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<PutGarnishmentRequest> for PutGarnishmentRequest
impl PartialEq<PutGarnishmentRequest> for PutGarnishmentRequest
sourcefn eq(&self, other: &PutGarnishmentRequest) -> bool
fn eq(&self, other: &PutGarnishmentRequest) -> bool
sourceimpl Serialize for PutGarnishmentRequest
impl Serialize for PutGarnishmentRequest
impl StructuralPartialEq for PutGarnishmentRequest
Auto Trait Implementations
impl RefUnwindSafe for PutGarnishmentRequest
impl Send for PutGarnishmentRequest
impl Sync for PutGarnishmentRequest
impl Unpin for PutGarnishmentRequest
impl UnwindSafe for PutGarnishmentRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more