| 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] |
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)