Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1017 Bytes

File metadata and controls

30 lines (21 loc) · 1017 Bytes

Form1099StatusDetail

Properties

Name Type Description Notes
time str [optional]
status str [optional]

Example

from Avalara.SDK.models.A1099.V2.form1099_status_detail import Form1099StatusDetail

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

# convert the object into a dict
form1099_status_detail_dict = form1099_status_detail_instance.to_dict()
# create an instance of Form1099StatusDetail from a dict
form1099_status_detail_from_dict = Form1099StatusDetail.from_dict(form1099_status_detail_dict)

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