Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 963 Bytes

File metadata and controls

31 lines (22 loc) · 963 Bytes

OptInWorkflow

Properties

Name Type Description Notes
description str
image_urls List[str]
confirmation_response str [optional]

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]