| Name |
Type |
Description |
Notes |
| id |
float |
|
[optional] |
| type |
float |
|
|
| title |
str |
|
|
| is_built_in |
bool |
|
[optional] |
| enabled |
bool |
|
|
| data |
str |
|
|
from seerr.models.discover_slider import DiscoverSlider
# TODO update the JSON string below
json = "{}"
# create an instance of DiscoverSlider from a JSON string
discover_slider_instance = DiscoverSlider.from_json(json)
# print the JSON string representation of the object
print(DiscoverSlider.to_json())
# convert the object into a dict
discover_slider_dict = discover_slider_instance.to_dict()
# create an instance of DiscoverSlider from a dict
discover_slider_from_dict = DiscoverSlider.from_dict(discover_slider_dict)
[Back to Model list] [Back to API list] [Back to README]