You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The email address of the individual associated with the form.
employee_first_name
str
The first name of the employee.
employee_last_name
str
The last name of the employee.
office_code
str
The office code associated with the form.
[optional]
company_id
str
The ID of the associated company. Required when creating a form.
[optional]
reference_id
str
A reference identifier for the form.
[optional]
name
str
The name of the individual or entity associated with the form.
reference_number
str
A reference number for the form.
[optional]
account_number
str
The account number associated with the form.
[optional]
Example
fromAvalara.SDK.models.A1099.V2.create_and_send_w9_form_email_requestimportCreateAndSendW9FormEmailRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateAndSendW9FormEmailRequest from a JSON stringcreate_and_send_w9_form_email_request_instance=CreateAndSendW9FormEmailRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateAndSendW9FormEmailRequest.to_json())
# convert the object into a dictcreate_and_send_w9_form_email_request_dict=create_and_send_w9_form_email_request_instance.to_dict()
# create an instance of CreateAndSendW9FormEmailRequest from a dictcreate_and_send_w9_form_email_request_from_dict=CreateAndSendW9FormEmailRequest.from_dict(create_and_send_w9_form_email_request_dict)