RemoteImageResult

Class RemoteImageResult.

Properties

Name Type Description Notes
images List[RemoteImageInfo] Gets or sets the images. [optional]
total_record_count int Gets or sets the total record count. [optional]
providers List[str] Gets or sets the providers. [optional]

Example

from jellyfin.generated.api_10_11.models.remote_image_result import RemoteImageResult

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

# convert the object into a dict
remote_image_result_dict = remote_image_result_instance.to_dict()
# create an instance of RemoteImageResult from a dict
remote_image_result_from_dict = RemoteImageResult.from_dict(remote_image_result_dict)

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