Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.04 KB

File metadata and controls

35 lines (26 loc) · 1.04 KB

PlexConnection

Properties

Name Type Description Notes
protocol str
address str
port float
uri str
local bool
status float [optional]
message str [optional]

Example

from overseerr.models.plex_connection import PlexConnection

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

# convert the object into a dict
plex_connection_dict = plex_connection_instance.to_dict()
# create an instance of PlexConnection from a dict
plex_connection_from_dict = PlexConnection.from_dict(plex_connection_dict)

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