Class ConfigError
- Namespace
- Azure.Iot.Operations.Services.AssetAndDeviceRegistry.Models
- Assembly
- Azure.Iot.Operations.Services.dll
public record ConfigError : IEquatable<ConfigError>
- Inheritance
-
ConfigError
- Implements
- Inherited Members
Properties
Code
Error code for classification of errors (ex: '400', '404', '500', etc.).
public string? Code { get; set; }
Property Value
Details
Array of error details that describe the status of each error.
public List<DetailsSchemaElement>? Details { get; set; }
Property Value
Message
Human readable helpful error message to provide additional context for error (ex: “capability Id ''foo'' does not exist”).
public string? Message { get; set; }