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§
Source§impl Clone for PutGarnishmentRequest
impl Clone for PutGarnishmentRequest
Source§fn clone(&self) -> PutGarnishmentRequest
fn clone(&self) -> PutGarnishmentRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PutGarnishmentRequest
impl Debug for PutGarnishmentRequest
Source§impl<'de> Deserialize<'de> for PutGarnishmentRequest
impl<'de> Deserialize<'de> for PutGarnishmentRequest
Source§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
Source§impl JsonSchema for PutGarnishmentRequest
impl JsonSchema for PutGarnishmentRequest
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for PutGarnishmentRequest
impl PartialEq for PutGarnishmentRequest
Source§impl Serialize for PutGarnishmentRequest
impl Serialize for PutGarnishmentRequest
impl StructuralPartialEq for PutGarnishmentRequest
Auto Trait Implementations§
impl Freeze for PutGarnishmentRequest
impl RefUnwindSafe for PutGarnishmentRequest
impl Send for PutGarnishmentRequest
impl Sync for PutGarnishmentRequest
impl Unpin for PutGarnishmentRequest
impl UnwindSafe for PutGarnishmentRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more