| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| name | str | [optional] |
from seerr.models.service_profile import ServiceProfile
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceProfile from a JSON string
service_profile_instance = ServiceProfile.from_json(json)
# print the JSON string representation of the object
print(ServiceProfile.to_json())
# convert the object into a dict
service_profile_dict = service_profile_instance.to_dict()
# create an instance of ServiceProfile from a dict
service_profile_from_dict = ServiceProfile.from_dict(service_profile_dict)