/// <summary>
 /// Initializes a new instance of the
 /// RunDiskInspectionAsyncOperationResult class.
 /// </summary>
 /// <param name="resultStatus">Possible values include: 'Success',
 /// 'Failed'</param>
 /// <param name="createdUTC">The time when the disk inspection was
 /// completed.</param>
 public RunDiskInspectionAsyncOperationResult(string result = default(string), string resultStatus = default(string), ErrorDetail errorDetail = default(ErrorDetail), System.DateTime?createdUTC = default(System.DateTime?))
 {
     Result       = result;
     ResultStatus = resultStatus;
     ErrorDetail  = errorDetail;
     CreatedUTC   = createdUTC;
     CustomInit();
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the ErrorResponse class.
 /// </summary>
 public ErrorResponse(ErrorDetail error = default(ErrorDetail))
 {
     Error = error;
     CustomInit();
 }