Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.64 KB

File metadata and controls

34 lines (25 loc) · 1.64 KB

Viber

Properties

Name Type Description Notes
default_responder_id str The default responder ID for the integration. This is the ID of the responder that will be used to send messages to the user. For more information, refer to the <a href=&quot;https://developer.zendesk.com/documentation/conversations/messaging-platform/programmable-conversations/switchboard/#default-integration-assignment\&quot;&gt;Switchboard guide</a>. [optional]
default_responder DefaultResponderDefaultResponder [optional]
type str To configure a Viber integration, acquire the Viber Public Account token from the user and call the Create Integration endpoint. [optional] [default to 'viber']
token str Viber Public Account token.
uri str Unique URI of the Viber account. [optional] [readonly]
account_id str Unique ID of the Viber account. [optional] [readonly]

Example

from sunshine_conversations_client.model.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]