Table of Contents

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

string

Details

Array of error details that describe the status of each error.

public List<DetailsSchemaElement>? Details { get; set; }

Property Value

List<DetailsSchemaElement>

Message

Human readable helpful error message to provide additional context for error (ex: “capability Id ''foo'' does not exist”).

public string? Message { get; set; }

Property Value

string