Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AsyncWeekScheduleResponse" /> class.
 /// </summary>
 /// <param name="Result">Week schedule result. The value will be null if the data is sent through notification or if response is large..</param>
 /// <param name="DownloadUrl">The url to fetch the result for large responses. The value is null if result contains the data.</param>
 /// <param name="Status">The status of the request.</param>
 /// <param name="OperationId">The operation id to watch for on the notification topic if status == Processing.</param>
 public AsyncWeekScheduleResponse(WeekSchedule Result = null, string DownloadUrl = null, StatusEnum?Status = null, string OperationId = null)
 {
     this.Result      = Result;
     this.DownloadUrl = DownloadUrl;
     this.Status      = Status;
     this.OperationId = OperationId;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WeekScheduleResponse" /> class.
 /// </summary>
 /// <param name="Result">The result of the request. The value will be null if response is large.</param>
 /// <param name="DownloadUrl">The url to fetch the result for large responses. The value is null if result contains the data.</param>
 public WeekScheduleResponse(WeekSchedule Result = null, string DownloadUrl = null)
 {
     this.Result      = Result;
     this.DownloadUrl = DownloadUrl;
 }