Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

File metadata and controls

30 lines (21 loc) · 1.25 KB

Form1099ListRequest

Properties

Name Type Description Notes
type str Available form types: * `1042-S` * `1095-B` * `1095-C` * `1099-DIV` * `1099-INT` * `1099-K` * `1099-MISC` * `1099-NEC` * `1099-R` [optional]
forms List[Get1099Form200Response] [optional]

Example

from Avalara.SDK.models.A1099.V2.form1099_list_request import Form1099ListRequest

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

# convert the object into a dict
form1099_list_request_dict = form1099_list_request_instance.to_dict()
# create an instance of Form1099ListRequest from a dict
form1099_list_request_from_dict = Form1099ListRequest.from_dict(form1099_list_request_dict)

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