| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | [optional] | |
| pub_date | str | [optional] |
from talon_one.models.features_feed import FeaturesFeed
# TODO update the JSON string below
json = "{}"
# create an instance of FeaturesFeed from a JSON string
features_feed_instance = FeaturesFeed.from_json(json)
# print the JSON string representation of the object
print(FeaturesFeed.to_json())
# convert the object into a dict
features_feed_dict = features_feed_instance.to_dict()
# create an instance of FeaturesFeed from a dict
features_feed_from_dict = FeaturesFeed.from_dict(features_feed_dict)