Skip to main content

DeliveryResponse

Delivery configuration returned in stream responses.

Properties

NameTypeDescriptionNotes
methodstrDelivery method.[optional]
endpoint_urlstrReceiver endpoint URL.[optional]
}

Example

from sailpoint.shared_signals_framework_ssf.models.delivery_response import DeliveryResponse

delivery_response = DeliveryResponse(
method='urn:ietf:rfc:8935',
endpoint_url='https://receiver.example.com/ssf/events'
)

[Back to top]