| Name | Type | Description | Notes |
|---|---|---|---|
| sender | str | ||
| text | str | ||
| image_url | str | [optional] | |
| button_caption | str | [optional] | |
| link_url | str | Required if button_caption is set | [optional] |
from bsg_api.models.viber import Viber
# TODO update the JSON string below
json = "{}"
# create an instance of Viber from a JSON string
viber_instance = Viber.from_json(json)
# print the JSON string representation of the object
print(Viber.to_json())
# convert the object into a dict
viber_dict = viber_instance.to_dict()
# create an instance of Viber from a dict
viber_from_dict = Viber.from_dict(viber_dict)