PersonLookupInfoRemoteSearchQuery
Properties
Name |
Type |
Description |
Notes |
search_info |
PersonLookupInfo |
|
[optional] |
item_id |
str |
|
[optional] |
search_provider_name |
str |
Gets or sets the provider name to search within if set. |
[optional] |
include_disabled_providers |
bool |
Gets or sets a value indicating whether disabled providers should be included. |
[optional] |
Example
from jellyfin.generated.api_10_10.models.person_lookup_info_remote_search_query import PersonLookupInfoRemoteSearchQuery
# TODO update the JSON string below
json = "{}"
# create an instance of PersonLookupInfoRemoteSearchQuery from a JSON string
person_lookup_info_remote_search_query_instance = PersonLookupInfoRemoteSearchQuery.from_json(json)
# print the JSON string representation of the object
print(PersonLookupInfoRemoteSearchQuery.to_json())
# convert the object into a dict
person_lookup_info_remote_search_query_dict = person_lookup_info_remote_search_query_instance.to_dict()
# create an instance of PersonLookupInfoRemoteSearchQuery from a dict
person_lookup_info_remote_search_query_from_dict = PersonLookupInfoRemoteSearchQuery.from_dict(person_lookup_info_remote_search_query_dict)
[Back to Model list] [Back to API list] [Back to README]