ProfileCondition
Properties
Example
from jellyfin.generated.api_10_10.models.profile_condition import ProfileCondition
# TODO update the JSON string below
json = "{}"
# create an instance of ProfileCondition from a JSON string
profile_condition_instance = ProfileCondition.from_json(json)
# print the JSON string representation of the object
print(ProfileCondition.to_json())
# convert the object into a dict
profile_condition_dict = profile_condition_instance.to_dict()
# create an instance of ProfileCondition from a dict
profile_condition_from_dict = ProfileCondition.from_dict(profile_condition_dict)
[Back to Model list] [Back to API list] [Back to README]