Table of Contents

Class EventStreamCloudEvent

Namespace
Auth0.ManagementApi
Assembly
Auth0.ManagementApi.dll

Event content. This will only be set if delivery failed.

[Serializable]
public record EventStreamCloudEvent : IJsonOnDeserialized, IEquatable<EventStreamCloudEvent>
Inheritance
EventStreamCloudEvent
Implements
Inherited Members
Extension Methods

Properties

AdditionalProperties

[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }

Property Value

ReadOnlyAdditionalProperties

Data

Event contents encoded as a string.

[JsonPropertyName("data")]
public string? Data { get; set; }

Property Value

string

Id

Unique identifier for the event

[JsonPropertyName("id")]
public string? Id { get; set; }

Property Value

string

Source

Where the event originated

[JsonPropertyName("source")]
public string? Source { get; set; }

Property Value

string

Specversion

Version of CloudEvents spec

[JsonPropertyName("specversion")]
public string? Specversion { get; set; }

Property Value

string

Time

Timestamp at which the event was generated

[JsonPropertyName("time")]
public DateTime? Time { get; set; }

Property Value

DateTime?

Type

Type of the event (e.g., user.created)

[JsonPropertyName("type")]
public string? Type { get; set; }

Property Value

string

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.