Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

SearchResource.md

File metadata and controls

32 lines (23 loc) · 1.03 KB

SearchResource

Properties

Name Type Description Notes
id int [optional]
foreign_id str [optional]
artist ArtistResource [optional]
album AlbumResource [optional]

Example

from lidarr.models.search_resource import SearchResource

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

# convert the object into a dict
search_resource_dict = search_resource_instance.to_dict()
# create an instance of SearchResource from a dict
search_resource_from_dict = SearchResource.from_dict(search_resource_dict)

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