Struct gusto_api::types::PostCompanyContractorsRequest [−][src]
pub struct PostCompanyContractorsRequest {
pub business_name: String,
pub ein: String,
pub email: String,
pub first_name: String,
pub last_name: String,
pub middle_initial: String,
pub self_onboarding: Option<bool>,
pub start_date: String,
pub type_: PostCompanyContractorsRequestType,
pub wage_type: PostCompanyContractorsRequestWageType,
}Expand description
Fields
business_name: StringThe name of the contractor business. This attribute is required for “Business” contractors and will be ignored for “Individual” contractors.
ein: Stringemail: Stringfirst_name: StringThe contractor’s first name. This attribute is required for “Individual” contractors and will be ignored for “Business” contractors.
last_name: Stringmiddle_initial: StringThe contractor’s middle initial. This attribute is optional for “Individual” contractors and will be ignored for “Business” contractors.
self_onboarding: Option<bool>start_date: StringThe day when the contractor will start working for the company.
type_: PostCompanyContractorsRequestTypeThe contractor type, either an “Individual” or a “Business”.
wage_type: PostCompanyContractorsRequestWageTypeThe contractor’s wage type, either “Fixed” or “Hourly”.
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 Send for PostCompanyContractorsRequest
impl Sync for PostCompanyContractorsRequest
impl Unpin for PostCompanyContractorsRequest
impl UnwindSafe for PostCompanyContractorsRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more