| Name |
Type |
Description |
Notes |
| title |
object |
|
|
| order_number |
object |
|
|
| body |
object |
|
|
| url |
object |
|
|
| media_url |
object |
|
[optional] |
| published_date |
object |
|
[optional] |
| id |
AmenityId |
|
|
| created_at |
object |
|
|
| updated_at |
object |
|
|
| is_active |
object |
|
|
| merchant_id |
str |
|
|
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]