Class EventStreamCloudEventErrorDetail
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Error details.
[Serializable]
public record EventStreamCloudEventErrorDetail : IJsonOnDeserialized, IEquatable<EventStreamCloudEventErrorDetail>
- Inheritance
-
EventStreamCloudEventErrorDetail
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public ReadOnlyAdditionalProperties AdditionalProperties { get; }
Property Value
Code
[JsonPropertyName("code")]
public required EventStreamCloudEventErrorCodeEnum Code { get; set; }
Property Value
Message
Human-readable error message.
[JsonPropertyName("message")]
public required string Message { get; set; }
Property Value
Offset
The cursor at the time of the error (when available). Can be used to resume from this position.
[JsonPropertyName("offset")]
public string? Offset { 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.