/// <summary>
 /// Initializes a new instance of the <see cref="ErrorResponse" /> class.
 /// </summary>
 /// <param name="errors">errors.</param>
 /// <param name="instance">instance.</param>
 /// <param name="status">The HTTP status code. .</param>
 /// <param name="title">The error title describing the particular error. .</param>
 /// <param name="type">type.</param>
 public ErrorResponse(DetailedErrors1 errors = default(DetailedErrors1), string instance = default(string), int?status = default(int?), string title = default(string), string type = default(string))
 {
     this.Errors   = errors;
     this.Instance = instance;
     this.Status   = status;
     this.Title    = title;
     this.Type     = type;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ErrorResponseFull" /> class.
 /// </summary>
 /// <param name="errors">errors.</param>
 public ErrorResponseFull(DetailedErrors1 errors = default(DetailedErrors1))
 {
     this.Errors = errors;
 }