Skip to main content

ApiErrorDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects.ApiErrors

Represents an api error

public abstract class ApiErrorDto

Inheritance ObjectApiErrorDto

Properties

StatusCode

The Http status code

public int StatusCode { get; }

Property Value

Int32

StatusDescription

String representation of the status code

public string StatusDescription { get; }

Property Value

String

Message

A message that explains what actually happened

public string Message { get; private set; }

Property Value

String

Details

A message that explains what actually happened

public IEnumerable<FailedDetailsDto> Details { get; private set; }

Property Value

IEnumerable<FailedDetailsDto>