Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

CreateUserImportFromPlexRequest

Properties

Name Type Description Notes
plex_ids List[str] [optional]

Example

from overseerr.models.create_user_import_from_plex_request import CreateUserImportFromPlexRequest

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

# convert the object into a dict
create_user_import_from_plex_request_dict = create_user_import_from_plex_request_instance.to_dict()
# create an instance of CreateUserImportFromPlexRequest from a dict
create_user_import_from_plex_request_from_dict = CreateUserImportFromPlexRequest.from_dict(create_user_import_from_plex_request_dict)

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