/// <summary>
 /// Initializes a new instance of the ErrorInformation class.
 /// </summary>
 public ErrorInformation(string code = default(string), string message = default(string), string target = default(string), IList <ErrorInformation> details = default(IList <ErrorInformation>), ErrorInformation innererror = default(ErrorInformation), object exception = default(object))
 {
     Code       = code;
     Message    = message;
     Target     = target;
     Details    = details;
     Innererror = innererror;
     Exception  = exception;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the ErrorResponse class.
 /// </summary>
 public ErrorResponse(ErrorInformation error = default(ErrorInformation))
 {
     Error = error;
     CustomInit();
 }