Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 986 Bytes

Preference.md

File metadata and controls

30 lines (22 loc) · 986 Bytes

Preference

A specific preference.

Properties

Name Type Description Notes
id str The unique id of the preference
value str The value of the preference. Note that this can be of any JSON type. [optional]

Example

from alfresco_core_api_client.models.preference import Preference

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

# convert the object into a dict
preference_dict = preference_instance.to_dict()
# create an instance of Preference from a dict
preference_form_dict = preference.from_dict(preference_dict)

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