DeliveryConfigurationResponse

data class DeliveryConfigurationResponse(val deliveryMode: String? = null, val push: PushInfoResponse? = null, val queue: QueueInfoResponse? = null)

Properties of the delivery configuration information of the event subscription.

Constructors

Link copied to clipboard
constructor(deliveryMode: String? = null, push: PushInfoResponse? = null, queue: QueueInfoResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val deliveryMode: String? = null

Delivery mode of the event subscription.

Link copied to clipboard
val push: PushInfoResponse? = null

This property should be populated when deliveryMode is push and represents information about the push subscription.

Link copied to clipboard

This property should be populated when deliveryMode is queue and represents information about the queue subscription.