Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.36 KB

File metadata and controls

34 lines (25 loc) · 1.36 KB

EventStreamConnection

The connection configuration for an event stream.

Properties

Name Type Description Notes
name str The name of the connection.
connection_type EventStreamConnectionTypeEnum
enabled bool Whether the connection is enabled.
webhook_url str The webhook URL, present when connection_type is WEBHOOK. [optional]
credentials WebhookCredentials [optional]

Example

from opal_security.models.event_stream_connection import EventStreamConnection

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

# convert the object into a dict
event_stream_connection_dict = event_stream_connection_instance.to_dict()
# create an instance of EventStreamConnection from a dict
event_stream_connection_from_dict = EventStreamConnection.from_dict(event_stream_connection_dict)

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