Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

WorkflowIds.md

File metadata and controls

31 lines (22 loc) · 966 Bytes

WorkflowIds

Workflow ID list

Properties

Name Type Description Notes
name str The name of this workflow [optional]
description str Workflow description [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.workflow_ids import WorkflowIds

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

# convert the object into a dict
workflow_ids_dict = workflow_ids_instance.to_dict()
# create an instance of WorkflowIds from a dict
workflow_ids_from_dict = WorkflowIds.from_dict(workflow_ids_dict)

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