ListWebhookEventsResult

data class ListWebhookEventsResult(val nextLink: String? = null, val value: List<EventResponse>? = null)

The result of a request to list events for a webhook.

Constructors

Link copied to clipboard
constructor(nextLink: String? = null, value: List<EventResponse>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val nextLink: String? = null

The URI that can be used to request the next list of events.

Link copied to clipboard
val value: List<EventResponse>? = null

The list of events. Since this list may be incomplete, the nextLink field should be used to request the next list of events.