Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.66 KB

File metadata and controls

32 lines (23 loc) · 1.66 KB

SwitchboardOfferControlFailure

Properties

Name Type Description Notes
id str The unique ID of the event. May be used to ensure that an event is not processed twice in the case of a webhook that is re-tried due to an error or timeout. [optional]
type str The type of the event. Will match one of the subscribed triggers for your webhook. [optional]
created_at str A timestamp signifying when the event was generated. Formatted as `YYYY-MM-DDThh:mm:ss.SSSZ`. [optional]
payload SwitchboardAcceptControlFailureAllOfPayload [optional]

Example

from sunshine_conversations_client.model.switchboard_offer_control_failure import SwitchboardOfferControlFailure

# TODO update the JSON string below
json = "{}"
# create an instance of SwitchboardOfferControlFailure from a JSON string
switchboard_offer_control_failure_instance = SwitchboardOfferControlFailure.from_json(json)
# print the JSON string representation of the object
print(SwitchboardOfferControlFailure.to_json())

# convert the object into a dict
switchboard_offer_control_failure_dict = switchboard_offer_control_failure_instance.to_dict()
# create an instance of SwitchboardOfferControlFailure from a dict
switchboard_offer_control_failure_from_dict = SwitchboardOfferControlFailure.from_dict(switchboard_offer_control_failure_dict)

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