Properties
Name |
Type |
Description |
Notes |
email |
str |
the provided email |
[optional] |
feature_updates |
bool |
user preference to receive feature updates |
|
security_updates |
bool |
user preference to receive security updates |
|
Example
from lakefs_sdk.models.comm_prefs_input import CommPrefsInput
# TODO update the JSON string below
json = "{}"
# create an instance of CommPrefsInput from a JSON string
comm_prefs_input_instance = CommPrefsInput.from_json(json)
# print the JSON string representation of the object
print CommPrefsInput.to_json()
# convert the object into a dict
comm_prefs_input_dict = comm_prefs_input_instance.to_dict()
# create an instance of CommPrefsInput from a dict
comm_prefs_input_form_dict = comm_prefs_input.from_dict(comm_prefs_input_dict)
[Back to Model list] [Back to API list] [Back to README]