Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.02 KB

File metadata and controls

42 lines (33 loc) · 2.02 KB

W9FormBaseResponse

Properties

Name Type Description Notes
type str The form type. [optional] [readonly]
id str The unique identifier for the form. [optional]
entry_status EntryStatusResponse The entry status information for the form. [optional]
reference_id str A reference identifier for the form. [optional]
company_id str The ID of the associated company. [optional]
display_name str The display name associated with the form. [optional]
email str The email address of the individual associated with the form. [optional]
archived bool Indicates whether the form is archived. [optional]
ancestor_id str Form ID of previous version. [optional]
signature str The signature of the form. [optional]
signed_date datetime The date the form was signed. [optional]
e_delivery_consented_at datetime The date when e-delivery was consented. [optional]
created_at datetime The creation date of the form. [optional]
updated_at datetime The last updated date of the form. [optional]

Example

from Avalara.SDK.models.A1099.V2.w9_form_base_response import W9FormBaseResponse

# TODO update the JSON string below
json = "{}"
# create an instance of W9FormBaseResponse from a JSON string
w9_form_base_response_instance = W9FormBaseResponse.from_json(json)
# print the JSON string representation of the object
print(W9FormBaseResponse.to_json())

# convert the object into a dict
w9_form_base_response_dict = w9_form_base_response_instance.to_dict()
# create an instance of W9FormBaseResponse from a dict
w9_form_base_response_from_dict = W9FormBaseResponse.from_dict(w9_form_base_response_dict)

[Back to Model list] [Back to API list] [Back to README]