Class CcdHttpError
CcdHttpError model
Inherited Members
Namespace: Unity.Services.Ccd.Management.Models
Assembly: Unity.Services.Ccd.Management.dll
Syntax
[Preserve]
[DataContract(Name = "ccd.httpError")]
public class CcdHttpError
Constructors
CcdHttpError(CcdErrorCodes, List<string>, string)
Creates an instance of CcdHttpError.
Declaration
[Preserve]
public CcdHttpError(CcdErrorCodes code = CcdErrorCodes._0, List<string> details = null, string reason = null)
Parameters
Type | Name | Description |
---|---|---|
CcdErrorCodes | code | code param |
List<string> | details | details param |
string | reason | reason param |
Properties
Code
Parameter code of CcdHttpError
Declaration
[Preserve]
[DataMember(Name = "code", EmitDefaultValue = false)]
public CcdErrorCodes Code { get; }
Property Value
Type | Description |
---|---|
CcdErrorCodes |
Details
Parameter details of CcdHttpError
Declaration
[Preserve]
[DataMember(Name = "details", EmitDefaultValue = false)]
public List<string> Details { get; }
Property Value
Type | Description |
---|---|
List<string> |
Reason
Parameter reason of CcdHttpError
Declaration
[Preserve]
[DataMember(Name = "reason", EmitDefaultValue = false)]
public string Reason { get; }
Property Value
Type | Description |
---|---|
string |