Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.55 KB

File metadata and controls

30 lines (21 loc) · 1.55 KB

OfferControlBody

Properties

Name Type Description Notes
switchboard_integration str The id or the name of the switchboard integration that will become pending. Also supports the `next` keyword to offer control to the next switchboard integration designated in the switchboard hierarchy configuration. This cannot match the active switchboard integration.
metadata Dict[str, object] Flat object containing custom properties. Strings, numbers and booleans are the only supported format that can be passed to metadata. The metadata is limited to 4KB in size. The metadata object will be included in the `switchboard:offerControl` and `switchboard:offerControl:failure` webhooks. [optional]

Example

from sunshine_conversations_client.model.offer_control_body import OfferControlBody

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

# convert the object into a dict
offer_control_body_dict = offer_control_body_instance.to_dict()
# create an instance of OfferControlBody from a dict
offer_control_body_from_dict = OfferControlBody.from_dict(offer_control_body_dict)

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