Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 935 Bytes

File metadata and controls

32 lines (24 loc) · 935 Bytes

Viber

Properties

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]

Example

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)

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