Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 910 Bytes

OptInWorkflow.md

File metadata and controls

30 lines (21 loc) · 910 Bytes

OptInWorkflow

Properties

Name Type Description Notes
description str
image_urls List[str]

Example

from bandwidth.models.opt_in_workflow import OptInWorkflow

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

# convert the object into a dict
opt_in_workflow_dict = opt_in_workflow_instance.to_dict()
# create an instance of OptInWorkflow from a dict
opt_in_workflow_from_dict = OptInWorkflow.from_dict(opt_in_workflow_dict)

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