Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.01 KB

File metadata and controls

34 lines (25 loc) · 1.01 KB

DiscoverSlider

Properties

Name Type Description Notes
id float [optional]
type float
title str
is_built_in bool [optional]
enabled bool
data str

Example

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]