Class ThingDescriptionExtensionError
- Namespace
- Azure.Iot.Operations.Services.EdgeRegistry.Generated
- Assembly
- Azure.Iot.Operations.Services.dll
public class ThingDescriptionExtensionError : IJsonOnDeserialized, IJsonOnSerializing
- Inheritance
-
ThingDescriptionExtensionError
- Implements
- Inherited Members
Properties
Code
HTTP-style response code.
[JsonPropertyName("code")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public ulong Code { get; set; }
Property Value
Detail
Detailed error description.
[JsonPropertyName("detail")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Detail { get; set; }
Property Value
Instance
The XID of the entity that caused the error.
[JsonPropertyName("instance")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Instance { get; set; }
Property Value
Status
HTTP-style response status text.
[JsonPropertyName("status")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Status { get; set; }
Property Value
Title
Short human-readable error title.
[JsonPropertyName("title")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Title { get; set; }
Property Value
Type
URI identifying the error type.
[JsonPropertyName("type")]
[JsonIgnore(Condition = JsonIgnoreCondition.Never)]
[JsonRequired]
public string Type { get; set; }