| Name |
Type |
Description |
Notes |
| description |
str |
|
|
| image_urls |
List[str] |
|
|
| confirmation_response |
str |
|
[optional] |
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]