Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 847 Bytes

Sources.md

File metadata and controls

29 lines (20 loc) · 847 Bytes

Sources

Different sources from where user signed up. e.g. social signup, username-password

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.sources import Sources

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

# convert the object into a dict
sources_dict = sources_instance.to_dict()
# create an instance of Sources from a dict
sources_form_dict = sources.from_dict(sources_dict)

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