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