Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.18 KB

File metadata and controls

34 lines (25 loc) · 1.18 KB

WTNewsArticleUpdateParams

Properties

Name Type Description Notes
title str
body str
url str
order_number int
media_url str [optional]
published_date datetime [optional]

Example

from wallet.models.wt_news_article_update_params import WTNewsArticleUpdateParams

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

# convert the object into a dict
wt_news_article_update_params_dict = wt_news_article_update_params_instance.to_dict()
# create an instance of WTNewsArticleUpdateParams from a dict
wt_news_article_update_params_form_dict = wt_news_article_update_params.from_dict(wt_news_article_update_params_dict)

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