| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| created_at |
datetime |
|
|
| updated_at |
datetime |
|
|
| subject |
str |
|
|
| body |
str |
|
|
| severity |
str |
|
|
| is_active |
bool |
|
|
from wallet.models.announcement import Announcement
# TODO update the JSON string below
json = "{}"
# create an instance of Announcement from a JSON string
announcement_instance = Announcement.from_json(json)
# print the JSON string representation of the object
print Announcement.to_json()
# convert the object into a dict
announcement_dict = announcement_instance.to_dict()
# create an instance of Announcement from a dict
announcement_form_dict = announcement.from_dict(announcement_dict)
[Back to Model list] [Back to API list] [Back to README]