Class ConfigError
- Assembly
- Azure.Iot.Operations.Services.dll
public class ConfigError
- Inheritance
-
ConfigError
- Inherited Members
Properties
Code
Error code for classification of errors (ex: '400', '404', '500', etc.).
[JsonPropertyName("code")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Code { get; set; }
Property Value
Details
Array of error details that describe the status of each error.
[JsonPropertyName("details")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public List<DetailsSchemaElementSchema>? Details { get; set; }
Property Value
Message
Human readable helpful error message to provide additional context for error (ex: “capability Id ''foo'' does not exist”).
[JsonPropertyName("message")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? Message { get; set; }