Skip to content

SyntheticUserPartial

Properties

NameTypeDescriptionNotes
descriptionstr[optional]

Example

python
from syntheticusers.models.synthetic_user_partial import SyntheticUserPartial

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

# convert the object into a dict
synthetic_user_partial_dict = synthetic_user_partial_instance.to_dict()
# create an instance of SyntheticUserPartial from a dict
synthetic_user_partial_from_dict = SyntheticUserPartial.from_dict(synthetic_user_partial_dict)

[Back to API list] [Back to SDK]

Released under the MIT License.