| Name |
Type |
Description |
Notes |
| displayed_on_comments |
bool |
|
[optional] |
from client.models.update_user_badge_params import UpdateUserBadgeParams
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateUserBadgeParams from a JSON string
update_user_badge_params_instance = UpdateUserBadgeParams.from_json(json)
# print the JSON string representation of the object
print(UpdateUserBadgeParams.to_json())
# convert the object into a dict
update_user_badge_params_dict = update_user_badge_params_instance.to_dict()
# create an instance of UpdateUserBadgeParams from a dict
update_user_badge_params_from_dict = UpdateUserBadgeParams.from_dict(update_user_badge_params_dict)
[Back to Model list] [Back to API list] [Back to README]