| Name | Type | Description | Notes |
|---|---|---|---|
| id | float | [optional] | |
| logo_path | str | [optional] | |
| origin_country | str | [optional] | |
| name | str | [optional] |
from overseerr.models.network import Network
# TODO update the JSON string below
json = "{}"
# create an instance of Network from a JSON string
network_instance = Network.from_json(json)
# print the JSON string representation of the object
print(Network.to_json())
# convert the object into a dict
network_dict = network_instance.to_dict()
# create an instance of Network from a dict
network_from_dict = Network.from_dict(network_dict)