Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BuAsyncScheduleResponse" /> class.
 /// </summary>
 /// <param name="Status">The status of the operation.</param>
 /// <param name="OperationId">The ID for the operation.</param>
 /// <param name="Result">The result of the operation.  Null unless status == Complete.</param>
 public BuAsyncScheduleResponse(StatusEnum?Status = null, string OperationId = null, BuScheduleMetadata Result = null)
 {
     this.Status      = Status;
     this.OperationId = OperationId;
     this.Result      = Result;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ScheduleUploadProcessingResponse" /> class.
 /// </summary>
 /// <param name="Status">The status of the operation.</param>
 /// <param name="OperationId">The ID for the operation.</param>
 /// <param name="Result">The result of the operation.  Null unless status == Complete.</param>
 public ScheduleUploadProcessingResponse(StatusEnum?Status = null, string OperationId = null, BuScheduleMetadata Result = null)
 {
     this.Status      = Status;
     this.OperationId = OperationId;
     this.Result      = Result;
 }