Struct gusto_api::types::PostCompanyContractorRequest [−][src]
pub struct PostCompanyContractorRequest {
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: Option<NaiveDate>,
pub type_: PostCompanyContractorRequestType,
pub wage_type: PostCompanyContractorRequestWageType,
}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: Option<NaiveDate>The day when the contractor will start working for the company.
type_: PostCompanyContractorRequestTypeThe contractor type, either an “Individual” or a “Business”.
wage_type: PostCompanyContractorRequestWageTypeThe 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 PostCompanyContractorRequest
impl Sync for PostCompanyContractorRequest
impl Unpin for PostCompanyContractorRequest
impl UnwindSafe for PostCompanyContractorRequest
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more