| Name | Type | Description | Notes |
|---|---|---|---|
| request_id | str | UnifAPI request id for support and ledger correlation. | |
| data | NewsSearchResponse | ||
| billing | Billing |
from unifapi.models.news_search_post200_response import NewsSearchPost200Response
# TODO update the JSON string below
json = "{}"
# create an instance of NewsSearchPost200Response from a JSON string
news_search_post200_response_instance = NewsSearchPost200Response.from_json(json)
# print the JSON string representation of the object
print(NewsSearchPost200Response.to_json())
# convert the object into a dict
news_search_post200_response_dict = news_search_post200_response_instance.to_dict()
# create an instance of NewsSearchPost200Response from a dict
news_search_post200_response_from_dict = NewsSearchPost200Response.from_dict(news_search_post200_response_dict)