Skip to content

SolutionUpdate

Properties

NameTypeDescriptionNotes
descriptionstr[optional]

Example

python
from syntheticusers.models.solution_update import SolutionUpdate

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

# convert the object into a dict
solution_update_dict = solution_update_instance.to_dict()
# create an instance of SolutionUpdate from a dict
solution_update_from_dict = SolutionUpdate.from_dict(solution_update_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.