Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.22 KB

File metadata and controls

39 lines (30 loc) · 1.22 KB

NewsArticle

Properties

Name Type Description Notes
title str
order_number int
body str
url str
media_url str [optional]
published_date datetime [optional]
id SaveTicketSettingsRequestPaymentDesignID
created_at datetime
updated_at datetime
is_active bool
merchant_id str

Example

from wallet.models.news_article import NewsArticle

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

# convert the object into a dict
news_article_dict = news_article_instance.to_dict()
# create an instance of NewsArticle from a dict
news_article_form_dict = news_article.from_dict(news_article_dict)

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