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
Data
Event contents encoded as a string.
[JsonPropertyName("data")]
public string? Data { get; set; }
Property Value
Id
Unique identifier for the event
[JsonPropertyName("id")]
public string? Id { get; set; }
Property Value
Source
Where the event originated
[JsonPropertyName("source")]
public string? Source { get; set; }
Property Value
Specversion
Version of CloudEvents spec
[JsonPropertyName("specversion")]
public string? Specversion { get; set; }
Property Value
Time
Timestamp at which the event was generated
[JsonPropertyName("time")]
public DateTime? Time { get; set; }
Property Value
Type
Type of the event (e.g., user.created)
[JsonPropertyName("type")]
public string? Type { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.