Struct gusto_api::types::Contractor [−][src]
pub struct Contractor {Show 14 fields
pub address: Option<Address>,
pub business_name: String,
pub company_id: f64,
pub ein: String,
pub email: String,
pub first_name: String,
pub hourly_rate: String,
pub id: f64,
pub is_active: bool,
pub last_name: String,
pub middle_initial: String,
pub type_: Option<Type>,
pub version: String,
pub wage_type: Option<WageType>,
}Expand description
The representation of a contractor (individual or business) in Gusto.
Fields
address: Option<Address>The representation of a contractor (individual or business) in Gusto.
business_name: StringThe name of the contractor business. This attribute is required for “Business” contractors and will be ignored for “Individual” contractors.
company_id: f64The representation of a contractor (individual or business) in Gusto.
ein: StringThe Federal Employer Identification Number of the contractor business. This attribute is optional for “Business” contractors and will be ignored for “Individual” contractors.
email: StringThe contractor’s email address. This attribute is optional for “Individual” contractors and will be ignored for “Business” contractors.
first_name: StringThe contractor’s first name. This attribute is required for “Individual” contractors and will be ignored for “Business” contractors.
hourly_rate: StringThe representation of a contractor (individual or business) in Gusto.
id: f64The representation of a contractor (individual or business) in Gusto.
is_active: boolThe representation of a contractor (individual or business) in Gusto.
last_name: StringThe contractor’s last name. This attribute is required for “Individual” contractors and will be ignored for “Business” contractors.
middle_initial: StringThe contractor’s middle initial. This attribute is optional for “Individual” contractors and will be ignored for “Business” contractors.
type_: Option<Type>The representation of a contractor (individual or business) in Gusto.
version: StringThe representation of a contractor (individual or business) in Gusto.
wage_type: Option<WageType>The representation of a contractor (individual or business) in Gusto.
Trait 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 RefUnwindSafe for Contractor
impl Send for Contractor
impl Sync for Contractor
impl Unpin for Contractor
impl UnwindSafe for Contractor
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more